我输入了类型按钮:
<input type='button' value='Click me' />
我需要重定向点击。
提前致谢。
答案 0 :(得分:3)
HTML:
<input type='button' id="myBtn" value='Click me' />
js:
var btn = document.getElementById('myBtn');
btn.onclick = function(){
window.location = "http://stackoverflow.com/";
}
不要忘记window.onload
答案 1 :(得分:3)
选项1:
使用链接标记
<a href="other_site">Click Me</a>
通过CSS使元素看起来像按钮。
选项2:
<input type="button" value="Click Me"
onclick="window.location='http://www.example.org';" />