当前位置: 代码迷 >> Eclipse >> Button (JSP) 如何跳转 不了页面
  详细解决方案

Button (JSP) 如何跳转 不了页面

热度:18   发布时间:2016-04-23 00:59:18.0
Button (JSP) 怎么跳转 不了页面
<input type="button" name="button" value="" onclick="window.location.href('index.jsp')"/>


点了没效果,  求解释!!!!

------解决方案--------------------

<html>
<head>
<title>Test</title>
<script>
function aab() {
alert('turn to aa.html');
window.location.href = './aa.html';
}
</script>
</head>
<body>
<input type="button" name="button" value="aa" onclick="aab()"/>
</body>
</html>

------解决方案--------------------
<input type="button" name="button" value="" onclick="window.location.href('index.jsp')"/>
改成
<input type="button" name="button" value="" onclick="window.location.href='index.jsp'"/>
  相关解决方案