我想調用一個點擊事件,然後按照href url。jQuery點擊事件第一,然後按照網址
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');
});
});
上面的代碼將只需按照網址,而不是提交表單。如果我省略了window.location調用,則提交工作。
是您的形式標準POST/GET HTML形式,或者它有一個基於AJAX的POST方法? –
我的表單是標準POST – user1040259