jquery显示隐藏input对象 程序员文章站 2023-11-10 15:38:52 1 所属部门选择其他时 显示一个输入框进行填写 #html #html <select id='deptid' name='deptid' class="select" onchange='deptchange()'> <c:foreach var="item" items="${deptidlist}" varstatus="status"> <option value='${item.value}'> ${item.name} </option> </c:foreach> </select> <!-- 类型为其他时 需要填写其它部门 --> <input id='otherdept' name='otherdept' type="text" class="text" maxlength='50' style='display:none;'/> //js // 根据切换是否显示其他部门输入框 function deptchange(){ var deptid = $('#deptid').val(); // alert('type:'+hytpye); if(deptid=='other'){ $('#otherdept').show(); }else{ $('#otherdept').hide(); } } 上一篇: jQuery实现列表自动滚动循环滚动展示新闻 下一篇: 浅析php中如何在有限的内存中读取大文件 推荐阅读 jquery显示隐藏input对象 Jquery设置attr的disabled属性控制某行显示或者隐藏 Jquery显示、隐藏元素以及添加删除样式 Jquery实现显示和隐藏的4种简单方式 jQuery实现input输入框获取焦点与失去焦点时提示的消失与显示功能示例 简单地做一下“回到顶部”按钮,用jQuery实现其隐藏和显示 比较不错的JS/JQuery显示或隐藏文本的方法 jquery scrollTop方法根据滚动像素显示隐藏顶部导航条 jQuery实现的点击显示隐藏下拉菜单功能完整示例 jQuery响应鼠标事件并隐藏与显示input默认值