-1

如何使用 javascript/greasemonkey 正确提交此表单?

<form action="/user/cart/add/66004574/93973071" method="POST">
<button class="text" value="upvote" type="submit">
<i class="icon-plus"></i>
Add to Cart
</button>
<input type="hidden" value="1337250c-b697-4e0e-b8fa-56bdedc8cd6a" name="_csrf_token">
</form>
4

1 回答 1

0

使用 jQuery,您可以像这样提交此表单:

在此功能中,您可以处理表单的数据。

$(document).on("submit", "form", function(e){
     e.preventDefault();

     // get the data of the form
     var url = $(this).attr("action"),
         _csrf_token = $(this).find("input name=['_csrf_token']).val();

     // jquery ajax call for example
     $.ajax(

     );
});
于 2013-06-25T07:49:10.837 回答