0

我有这个地址链接:

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

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

4

3 回答 3

0
<input type="button" value="Register" onclick="windows.location.href='http://xyz.com';>
于 2013-09-21T11:07:04.560 回答
0

代替:

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

和:

<button onclick="location.href='/User/Account/Register'">Register</button>
于 2013-09-21T11:11:42.217 回答
0

你可以使用 css 来做同样的事情

看这个演示Fiddle

于 2013-09-21T12:56:50.227 回答