JSP 打开制定地址的页面
在JSP中要求新窗口打开外部连结(如:http://www.zhaoxi.net/)
我用windows.open("http://www.zhaoxi.net/");
但是提示错误,说外部URL不能写在JSP中...
答案:windows.open("http://www.zhaoxi.net/");
把windows 的s去掉
window.open("http://www.zhaoxi.net/");
<body>
<input type="button" value="button" onclick="aa()">
</body>
<script type="text/javascript">
function aa(){
window.open("http://zhaoxi.net");
}
</script>
其他:try this:
<a href=>http://www.zhaoxi.net/" target="_blank">外部链接</a>
上一个:在jsp页面中总是出现下面的错误
下一个:求助一下这段JSP代码的具体意思,最好每句话都来个注释!急用!谢谢了!