我的 HTML:
<input id="penge" />
<input type="button" onclick="javascript: paymentwindow.open()" value="BETAL" id="betal" />
我的 jQuery:
<script type="text/javascript">
$(document).ready(function(){
var penge = $("#penge").val();
paymentwindow = new PaymentWindow({
'amount': penge,
'currency': "DKK",
'language': "1",
'orderid': "155",
'callbackurl': "http://localhost:3000/"
});
});
</script>
变量未定义。单击 beta 按钮时,我想设置变量 penge。
更新:
<script type="text/javascript">
$(document).ready(function(){
var penge;
$('#betal').click(function(){
penge = $("#penge").val();
paymentwindow.open();
});
paymentwindow = new PaymentWindow({
'amount': penge,
'currency': "DKK",
'language': "1",
'orderid': "155",
'callbackurl': "http://localhost:3000/"
});
});
</script>
彭格未定义。我还删除了 beta 按钮的 onclick js。