我怎样才能让一个按钮重定向我的网页到另一个页面?
这个问题在这里已经有了答案:
只需在button
添加一个onclick
事件button
:
<button onclick="location.href = 'www.yoursite.com';" id="myButton" class="float-left submit-button" >Home</button>
但是你不应该像这样内联,而是把它放在一个JS块中,并给这个button
一个ID:
<button id="myButton" class="float-left submit-button" >Home</button>
<script type="text/javascript">
document.getElementById("myButton").onclick = function () {
location.href = "www.yoursite.com";
};
</script>
尝试
<button onclick="window.location.href='b.php'">Click me</button>
只是另一种变化:
<body>
<button name="redirect" onClick="redirect()">
<script type="text/javascript">
function redirect()
{
var url = "http://www.(url).com";
window.location(url);
}
</script>
链接地址: http://www.djcxy.com/p/36551.html
上一篇: How can I make a button redirect my page to another page?