所以我只是按了一个按钮,我不知道如何分配它。 我的意思是,我点击按钮打开另一个链接。
我的按钮代码
<input type="button" value="anything">
答案 0 :(得分:0)
如果您只想创建一个指向其他网站/页面的按钮链接,请转到:
<button onclick="location.href='link_goes_here'" type="button">
Button_Text_Here</button>
请注意使用的引号不同:)
编辑:
<input type="button" onclick="location.href='link_goes_here'" value="button_text>
答案 1 :(得分:0)
您可以使用<a href="the_url_where_to_go">text</a>
之类的内容,然后使用css格式化
a {
display:block;
width: 100px;
height: 30px;
background-color: #ccc;
border-radius: 5px;
}
否则你可以使用带有javascript的按钮
<button onclick="location.href='the_url_where_to_go'" type="button">
Button_Text_Here</button>
或
<input type="button" onclick="location.href='the_url_where_to_go'" value="text_of_the button">
答案 2 :(得分:0)
这样做:
<button onclick="window.open('https://example.com')">Button</button>
答案 3 :(得分:0)
你可以做
<input type="button" value="Anything" onclick="window.location='http://www.example.org'" />
或
<a href="http://www.example.org"><button>Anything</button></a>
答案 4 :(得分:0)
你可以使用<a>
标签,里面有一个按钮。非常简单。
<a href="http://www.stackoverflow.com"><button>Click this link</button></a>