Jquery使用trigger()方法模拟事件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery使用trigger()方法模拟事件相关的知识,希望对你有一定的参考价值。
一、模拟select
$(‘#selectCount‘).change(function(){ $(‘select#some‘).val(10).change(); //or $(‘select#some‘).val(10).trigger(‘change‘); }
二、模拟点击
$("button:first").click(function () { update($("span:first")); }); $("button:last").click(function () { $("button:first").trigger(‘click‘); update($("span:last")); }); function update(j) { var n = parseInt(j.text(), 10); j.text(n + 1); }
本文出自 “冰仔” 博客,请务必保留此出处http://hfreeze.blog.51cto.com/1639680/1786055
以上是关于Jquery使用trigger()方法模拟事件的主要内容,如果未能解决你的问题,请参考以下文章