可以通過一個$.post
鏡像action=''
的表格嗎?
我不想製作多個$.post
函數,但action=''
隨着用戶選擇他/她想要在菜單系統中提交的內容而改變。因此,如果URL與action=''
一起動態更改,我只需要一個$.post
函數。
$("#txtrform").submit(function(){
$.post('{*ACTION*#txtrform}', $("#txtrform").serialize(), function(data) {
$("#col3").load("/include/txtrpbox/feed.php");
$('input#txtrinput').val('');
});
return false;
});
您可以使用jQuery的'.attr()'方法。 '$(「#txtrform」)。attr('action');' – 2013-05-05 23:16:39