我有这个地址链接:
<a href="/User/Account/Register">Register</a>
现在我想为此使用一个按钮。如果我单击按钮,如何转换它以更改页面位置?
我有这个地址链接:
<a href="/User/Account/Register">Register</a>
现在我想为此使用一个按钮。如果我单击按钮,如何转换它以更改页面位置?
<input type="button" value="Register" onclick="windows.location.href='http://xyz.com';>
代替:
<a href="/User/Account/Register">Register</a>
和:
<button onclick="location.href='/User/Account/Register'">Register</button>
你可以使用 css 来做同样的事情
看这个演示Fiddle