我有这个地址链接:
<a href="/User/Account/Register">Register</a>
现在我想用一个按钮。如果单击按钮,如何将其转换为更改页面位置?
答案 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