我想调用一个点击事件,然后按照 href url。
HTML 链接:
<a class="autoSave" href="?year=2013&week=42">←</a>
JS:
$(document).ready(function() {
$('.autoSave').click(function(event){
event.preventDefault();
$('.submitForm').click(); //HTML Form that I'm wanting a submit to happen
window.location = $(this).attr('href');
});
});
上面的代码只会跟随 url 而不会提交表单。如果我省略 window.location 调用,则提交有效。