我想在按钮单击时重新定位到相对 url:
<button onclick="document.location.href='/Recruiters.aspx'"></button>
但这不起作用...
有什么建议么?
我想在按钮单击时重新定位到相对 url:
<button onclick="document.location.href='/Recruiters.aspx'"></button>
但这不起作用...
有什么建议么?
按钮的默认设置type
是"submit"
,当在表单中时,单击按钮会提交它。虽然它应该首先重定向,但值得一试:
<button type="button" onclick="document.location.href='/Recruiters.aspx'"></button>
您的 onclick 需要是一个处理程序。你可以这样做:
<script>
function redirect()
{
window.location.href='/Recruiters.aspx';
}
</script>
<button onclick="redirect()"></button>
如果您不想使用处理程序,您仍然可以像这样内联:
<button onclick="javascript: window.location.href='/Recruiters.aspx';"></button>