HTML中在script中写的函数不执行,请大佬解决?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML中在script中写的函数不执行,请大佬解决?相关的知识,希望对你有一定的参考价值。
下面是我的代码,请大牛帮忙看一下哪里不对:
<html>
<head>
<meta charset="UTF-8" />
<title>Happy</title>
<script type="text/javascript">
function login()
var a =document.getElementById("username");
var b =document.getElementByld("psw");
if ((a.value=="0")&&(b.value=="1"))
alert("密码是1")
else
alert("0")
</script>
<link rel="stylesheet" type="text/css" href="test.css"/>
<title>Document</title>
</head>
<body>
<header class="v-header container">
<div class="fullscreen-video-wrap">
<img src="img/2.gif" class="image"/>
<div class="overlay"></div>
</div>
</header>
<form class="box" action="index.html" method="get">
<h1>登录</h1>
<input type="text" id="username" value="" placeholder="名" />
<input type="password" id="psw" value="" placeholder="密码" />
<input type="submit" value="登录" value="" onclick="login()"/>
</form>
</body>
</html>
我在servlet中写的script代码执行不了
PrintWriter out=response.getWriter();
out.print("<script>alert('删除成功!'); window.location.href='show.jsp';</script>");
页面根本跳转不了
("<script language=java>alert(\'删除成功!\'); window.location.href=\'show.jsp\';</script>"); 参考技术A window.location='../show.jsp'
1. 没有href
2. 你看看你的地址是不是写对了啊、../ 是/到工程目录那里、show.jsp 在webroot 下面的 参考技术B 重点,页面跳转不了,那有alert出现吗??
以上是关于HTML中在script中写的函数不执行,请大佬解决?的主要内容,如果未能解决你的问题,请参考以下文章