-6
我想創建一個按鈕鏈接到網站。 點擊按鈕後,會打開網站。嵌入式JavaScript打開網址
以下是內聯JS方法,但它不起作用。
<p><input type="submit" onclick="window.location.href('http://www.google.com')" value="Google" /></p>
我想創建一個按鈕鏈接到網站。 點擊按鈕後,會打開網站。嵌入式JavaScript打開網址
以下是內聯JS方法,但它不起作用。
<p><input type="submit" onclick="window.location.href('http://www.google.com')" value="Google" /></p>
試試這個
<p><input type="submit" onclick="window.location.href='http://www.google.com'" value="Google" /></p>
你缺少你**以下的內聯JS ***。不應該因**而不清楚你要求的**嗎? –