我有一个总变量,我使用 PHP/JS 下拉框中的更改通过刷新获取请求进行更新。似乎在 Firefox 中可以正常工作,但在 Chrome / IE 中则完全不行。有什么建议么?
<form action='cart.php' onchange = 'go()'>
<select id = 'postinfo' name = 'postage'>
<script>
function go() {
var x = document.getElementById("postinfo").value;
if (x == "express") {
var price = 9.99
window.location.href = "cart.php?delivery=" + price + "&item=express";
}else if (x == "free"){
var price = 4.99
window.location.href = "cart.php?delivery=" + price + "&item=free";
}
}
</script>