使 用了一個點擊按鈕跳轉的js,語句很簡單:
<input type="button" value="添加" onclick="location.href('http://www.jb51.net);" />
測試的時候發現其在IE下是可以用的而firefox則不能使用了。於是我在location前面加了一個 window,即改為:
onclick="window.location.href('http://baidu.com');"
發現仍然不行。
於是去baidu之,找到一個答案:
使用window.location="url"; 代替 location.href('url');"
於是將源程序改為如下即可:
<input type="button" value="添加" onclick="window.location='http://www.ddung.org'';" />