我可以提交使用jQuery這樣的:更改表單的「動作」
$('.SomeLink').bind('click', function()
{
$(form).submit();
});
實際的形式如下:
<form id="foo" method="get" action="http://www.google.com/search">
</form>
現在假設我有另一個鏈接中,我希望能夠使用相同的形式,但是現在我想更改'動作'的網址。如果單擊不同鏈接,我該如何更改操作?
非常感謝你(: – Youss