我花了一天时间研究 jquery,因为我认为它可以让我做到这一点。我有一个贝宝表格,我希望“onClick”按钮将此字段发送到我的 sql 表
<input type="hidden" name="amount" id="amount" value="0.05">
与此同时,我的 PayPal 按钮正在执行此操作:
<input class="btn btn-primary" onClick="send()" type="submit" value="Subscribe">
如何将此值传递给我的 process_plan.php?到目前为止,我有这个,但它挂起并且无法正常工作。
function send() {
var id = $('#amount').val();
var result;
$.ajax({
type: "POST",
url: "process_plan.php",
data: {
"amount" : amount
},
async: true,
dataType: "html",
success: function(response) {
result = response;
},
error: function(response) {
alert("Oh no! An error occured!");
}
});
return result;
}
如果代码真的很奇怪,我深表歉意——真的是我第一天学习 Jquery 和 Ajax。