需要一些帮助。这个javascript代码应该设置表单的目标并提交它。在safari 5.0.2中不起作用......为什么???
<html>
<body>You will be redirected to PayPal in a few seconds.
<form action="https://www.paypal.com/webscr" id="paypal_standard_checkout" name="paypal_standard_checkout" method="POST">
<input id="business" name="business" value="test@testxyz.com" type="hidden"/>
</form>
<script type="text/javascript">
document.getElementById("paypal_standard_checkout").setAttribute("target","payment");
document.getElementById("paypal_standard_checkout").submit();
</script>
</body>
</html>
答案 0 :(得分:4)
在Safari 5.0.1中没有为我工作然后我从编辑菜单中取消选中“阻止弹出窗口”,然后它工作正常:)
代码似乎工作正常,只是被阻止。