如何将地址链接转换为单击时更改页面的按钮?

时间:2013-09-21 10:58:28

标签: javascript html css

我有这个地址链接:

<a href="/User/Account/Register">Register</a>

现在我想用一个按钮。如果单击按钮,如何将其转换为更改页面位置?

3 个答案:

答案 0 :(得分:0)

<input type="button" value="Register" onclick="windows.location.href='http://xyz.com';>

答案 1 :(得分:0)

取代:

<a href="/User/Account/Register">Register</a>

使用:

<button onclick="location.href='/User/Account/Register'">Register</button>

答案 2 :(得分:0)

您可以将css用于相同的

请参阅此演示Fiddle