0

我有一些代码充当重定向并在用户单击单选按钮时设置一些值。在 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);
}
4

1 回答 1

2

删除 console.log - 或按 F12 打开控制台。

IE不支持控制台不打开

“控制台”是 Internet Explorer 的未定义错误

或更改为window.console && console.log(type)

于 2012-10-12T16:46:39.570 回答