我正在尝试使用hinclude.js加载我的Modals异步内容。所以我在我的模态中渲染一个远程页面,但我不想在第二次加载模态时请求它(如默认模态)。因为我想确保该链接正常工作,而不是javascript我想使用到远程页面的真实链接:
<a href="/web/app_dev.php/profile/suche" data-toggle="modal" data-target="#modal-searchUser">
<i class="icon-search icon-white"></i>Leute finden</a>
问题是内容已经在模态中,但由于href="/web/app_dev.php/profile/suche"
内容再次加载。
如何防止Twitter在点击时异步加载内容?
我已经尝试过了:
$('[data-target="#modal-searchUser"]').click(function(e) {
e.preventDefault();
$('#strego_user_search_search').focus();
});