位置: 编程技术 - 正文
推荐整理分享Spring MVC中Ajax实现二级联动的简单实例(spring mvc jsp),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:spring如何使用ajax,spring mvc ajax,spring如何使用ajax,springmvc与ajax交互,springmvc与ajax交互,springmvc使用ajax,spring如何使用ajax,spring mvc ajax,内容如对您有帮助,希望把文章链接给更多的朋友!
今天写项目遇到了二级联动,期间遇到点问题,写个博客记录一下。
后台Controller:
前台JSP:
JS:
以下是引用别人写的(原文地址:
1,下拉框:
稍微解释一下:
1.select[@name='country'] option[@selected] 表示具有name 属性,
并且该属性值为'country' 的select元素 里面的具有selected 属性的option 元素;
可以看出有@开头的就表示后面跟的是属性。
2,单选框:
3,复选框:
当然jquery的选择器是强大的. 还有很多方法.
<!--下拉框-->
1.<select id="selectTest"name="selectTest"> 2.<optionvalueoptionvalue="1"></option> 3.<optionvalueoptionvalue="2"></option> 4.<optionvalueoptionvalue="3"></option> 5.<optionvalueoptionvalue="4"></option> 6.<optionvalueoptionvalue="5"></option> 7.<optionvalueoptionvalue="6"></option> 8.</select>
9.jqueryradio取值,checkbox取值,select取值,radio选中,checkbox选中,select选中,及其相关获取一组radio被选中项的值
.var item = $('input[@name=items][@checked]').val();
.获取select被选中项的文本
.var item = $("select[@name=items] option[@selected]").text();
.select下拉框的第二个元素为当前选中值
.$('#select_id')[0].selectedIndex = 1;
.radio单选组的第二个元素为当前选中值
.$('input[@name=items]').get(1).checked = true;
.获取值:
.文本框,文本区域:$("#txt").attr("value");
.多选框checkbox:$("#checkbox_id").attr("value");
.单选组radio: $("input[@type=radio][@checked]").val();
.下拉框select: $('#sel').val();
.控制表单元素:
.文本框,文本区域:$("#txt").attr("value",'');//清空内容
. $("#txt").attr("value",'');//填充内容
.多选框checkbox: $("#chk1").attr("checked",'');//不打勾
. $("#chk2").attr("checked",true);//打勾
. if($("#chk1").attr('checked')==undefined) //判断是否已经打勾
.单选组radio:$("input[@type=radio]").attr("checked",'2');//设置value=2的项目为当前选中项
.下拉框select:$("#sel").attr("value",'-sel3');//设置value=-sel3的项目为当前选中项
. $("<optionvalueoptionvalue='1'></option><optionvalueoptionvalue='2'></option>").appendTo("#sel")//添
加下拉框的option
. $("#sel").empty();//清空下拉框
.获取一组radio被选中项的值
.var item = $('input[@name=items][@checked]').val();
.获取select被选中项的文本
.var item = $("select[@name=items] option[@selected]").text();
.select下拉框的第二个元素为当前选中值
.$('#select_id')[0].selectedIndex = 1;
.radio单选组的第二个元素为当前选中值
.$('input[@name=items]').get(1).checked = true;
.获取值:
.文本框,文本区域:$("#txt").attr("value");
.多选框checkbox:$("#checkbox_id").attr("value");
.单选组radio: $("input[@type=radio][@checked]").val();
.下拉框select: $('#sel').val();
.控制表单元素:
.文本框,文本区域:$("#txt").attr("value",'');//清空内容
.$("#txt").attr("value",'');//填充内容
.多选框checkbox: $("#chk1").attr("checked",'');//不打勾
.$("#chk2").attr("checked",true);//打勾
.if($("#chk1").attr('checked')==undefined) //判断是否已经打勾
.单选组radio:$("input[@type=radio]").attr("checked",'2');//设置value=2的项目为当前选中项
.下拉框select:$("#sel").attr("value",'-sel3');//设置value=-sel3的项目为当前选中项
.$("<optionvalueoptionvalue='1'></option><optionvalueoptionvalue='2'></option>").appendTo("#sel")//添加下拉框的option
.$("#sel").empty();//清空下拉框
以上这篇Spring MVC中Ajax实现二级联动的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持积木网。
jQuery插件dataTables添加序号列的方法 官网方法实例:$(document).ready(function(){vart=$('#example').DataTable({"columnDefs":[{"searchable":false,"orderable":false,"targets":0}],"order":[[1,'asc']]});t.on('order.dtsearch.dt',functio
移动端 一个简单易懂的弹出框 先给大家展示下效果图,如果大家感觉还不错,请继续参考实现代码。关键代码如下所示:functiontishi(content,url){varhtml='divclass="xiaoxinone"id="msg"style="z-index:
jQuery基于ID调用指定iframe页面内的方法 本文实例讲述了jQuery基于ID调用指定iframe页面内的方法。分享给大家供大家参考,具体如下:$(window.parent.document).contents().find("#iframeID")[0].contentWindow.initPa
标签: spring mvc jsp
本文链接地址:https://www.jiuchutong.com/biancheng/385844.html 转载请保留说明!友情链接: 武汉网站建设