随笔-jsp常用到单选和下拉框

。。。。。。。。。。。。。。。。。单选
<td class="value">
    <input <c:if test="${articlePage.top==1 }">checked="checked"</c:if> value="1" name="top" id="100" class="fangbox" type="checkbox"/>
    <label for="100">是否置顶</label>
    <input <c:if test="${articlePage.anchor==1 }">checked="checked"</c:if>  class="fangbox" value="1" name="anchor" id="120" type="checkbox"/>
    <label for="120">是否启用锚点</label>
</td>

。。。。。。。。。。。。。。。下拉框
 审核状态:
   <select name="searauditflag" id="searauditflag">
        <option value="-1">请选择</option>
        <option value="0">未审核</option>
        <option value="2">审核通过</option>
        <option value="3">审核不通过</option>
    </select>

时间: 2024-12-15 07:11:29

随笔-jsp常用到单选和下拉框的相关文章

JavaScrip单选,下拉框,文本框取值赋值--【DRP】

代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Co

js 判断 undefined,单选 以及下拉框选中状态

1 name = $(this).attr("title"); 2 if(typeof(name) == 'undefined'){ 3 alert(1); 4 } typeof 是个挺有意思的函数,有兴趣的同志们可以搜搜看 网上一堆 1 radio 被选中的值 2 var required100 = $(".required100:checked").val(); 3 4 select 被选中的值 5 var required6 = $(".requir

javascript遍历select下拉框判断其中值是否与指定值相等

用jquery多了,就忘了原生的js是如何写的了,还需要多加巩固. 需求:jsp回显一select下拉框.选中指定值. 用户点击修改 该select进行已有值回显.有两种解决方法 一.js中获取用户的该swig_dmSelect值,本例中是从action中获取的 js获取所有option,然后遍历进行判断. <script type="text/javascript"> <% String swjg_dmSelect = (String)session.getAttr

form 内置字段,数据实时更新,下拉框

用来验证 和 显示 生成html代码 类创建字段 使用参数 Field函数 required=True, 是否允许为空 widget=None, HTML插件 label=None, 用于生成Label标签或显示内容 initial=None, 初始值 help_text='', 帮助信息(在标签旁边显示) error_messages=None, 错误信息 {'required': '不能为空', 'invalid': '格式错误'} show_hidden_initial=False, 是否

struts2 jsp表单提交后保留表单中输入框中的值 下拉框select与input

原文地址:struts2 jsp表单提交后保留表单中输入框中的值 下拉框select与input jsp页面 1     function dosearch() {2         if ($("#textValue").val() == "") {3                 $("#errortip").html("<font color='#FF0000'>请输入查询内容</font>")

vue.js实现单选框、复选框和下拉框

Vue.js可以很方便的实现数据双向绑定,所以在处理表单,人机交互方面具有很大的优势.下边以单选框.复选框和下拉框为例介绍他们在HTML和Vue.js中的具体实现方式. 一.单选框 在传统的HTML中实现单选框的方法如下: <div id="app"> <input type="radio" name="gender" value="man" id="man"/><label

jquery 对下拉框和单选框的一些操作

下拉框 <select id="CategoryId" data-placeholder="资产类型" style="width:350px;" > <option value="1">硬盘</option> <option value="2">主板</option> <option value="3">CPU<

jsp简单练习-简单的下拉表单

<%@ page contentType="text/html; charset=gb2312" %> <html> <body> <form name="form1" action="SwitchApp.jsp" method="post"> 请选择一种颜色: <select name="ys"> <option value="r

文本框,下拉框,单选框只读状态属性

文本框只读属性:readonly="true" 下拉框只读属性: disabled="disabled" 单选框只读属性: $("#<%=txtIsReply.ClientID%>").click(function () { return false; })