我有一些代码充当重定向并在用户单击单选按钮时设置一些值。在 chrome 和 firefox 中,这些脚本可以完美运行,但在 IE 中似乎什么也没有发生。
HTML
<td>
<input type='radio' id="order_type6" name='order_type' value="5"
onClick="selectOrderType('1')">
<label for="order_type6"><strong>Facility Employee</strong></label>
</td>
<td>
<input type='radio' id="order_type7" name='order_type' value="5"
onClick="selectOrderType('1')">
<label for="order_type7"><strong>Private Contract</strong></label>
</td>
JS函数:
function selectOrderType(type)
{
console.log(type);
//replace '&load=1' with '&neworder=1'
$location = window.location.href.replace(/&load\=1/,'&neworder=1#');
//replace '#' at the end of the string with '' + $ordertype
window.location.href = $location.replace(/#?$|&order_type\=\D?/,'&order_type='+type);
}