首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Eclipse开发 >

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

2014-01-08 
Button (JSP) 怎么跳转 不了页面input typebutton namebutton value onclickwindow.location.

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'"/>

热点排行