我有这个代码:
<button type="button"
data-toggle="modal" id="testing"
class="btn btn-icon btn-primary glyphicons circle_ok"
data-target="#myModal"><i></i>
</button>
我想通过加载页面时执行的函数来模拟点击。
我怎样才能做到这一点 ?
谢谢,
我有这个代码:
<button type="button"
data-toggle="modal" id="testing"
class="btn btn-icon btn-primary glyphicons circle_ok"
data-target="#myModal"><i></i>
</button>
我想通过加载页面时执行的函数来模拟点击。
我怎样才能做到这一点 ?
谢谢,
使用速记方法.click()
$('your-button-selector').click()
$('your-button-selector').trigger('click')
为了模拟点击事件,它将运行所有已注册的点击事件处理程序,但可能/可能不会触发默认操作
您可以使用.trigger('click');
您可以将以下代码添加到您的页面
<script type="text/javascript">
$(function(){
$('button#testing').click()
});
</script>