手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jquery trigger实现联动的方法
jquery trigger实现联动的方法
摘要:本文实例讲述了jquerytrigger实现联动的方法。分享给大家供大家参考,具体如下:testing$(function(){$("#Pr...

本文实例讲述了jquery trigger实现联动的方法。分享给大家供大家参考,具体如下:

<html> <head> <title>testing</title> <script src="jquery-1.3.2.min.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { $("#Provinces").change(function (e,cityValue) { if ($(this).val() == "1") { $("#City").html("<option value='1' >长沙</option><option value='2' >衡阳</option>"); } else { $("#City").html("<option value='1' >武汉</option><option value='2' >襄阳</option>"); } if (typeof (cityValue) != "undefined") { $("#City").val(cityValue); } }); }); function test() { $("#Provinces").val("2"); $("#Provinces").trigger("change","2"); } </script> </head> <body> 省: <select id="Provinces" > <option value="1" >湖南</option> <option value="2" >湖北</option> </select><br /> 市: <select id="City"> <option value="1" >长沙</option> <option value="2" >衡阳</option> </select><br /> <input type="button" value="设置成湖北襄阳" /> </body> </html>

众所周知, trigger 是异步的, 在其后面执行的代码可能会跑到它前面去执行, 上面的代码就避免了这一点。

希望本文所述对大家jQuery程序设计有所帮助。

【jquery trigger实现联动的方法】相关文章:

javascript实现树形菜单的方法

jQuery实现控制文字内容溢出用省略号(…)表示的方法

JavaScript实现鼠标拖动效果的方法

javascript动态创建链接的方法

jQuery实现不断闪烁文字的方法

Jquery注册事件实现方法

JS/Jquery判断对象为空的方法

jQuery插件expander实现图片翻转特效

Jquery实现动态切换图片的方法

jQuery实现返回顶部效果的方法

精品推荐
分类导航