如何使用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>
答案 0 :(得分: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(
);
});