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>

参考技术A 将你的js放在body 结束标签前面,或者加上window.onload = function() 将你的js包起来; 参考技术B 第2个变量的获取你写错了,是ById 。不是ByLd本回答被提问者采纳

我在servlet中写的script代码执行不了

PrintWriter out=response.getWriter();
out.print("<script>alert('删除成功!'); window.location.href='show.jsp';</script>");
页面根本跳转不了

script中语言没有定义,添加一个language="java"即可,应该这样:
("<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中写的函数不执行,请大佬解决?的主要内容,如果未能解决你的问题,请参考以下文章

C语言编程函数localtime_s在VS 2020中写的程序参数错误,参数怎么写?

为啥我的script函数不执行?

angularjs中可以写js代码吗

在 C# 中,类或函数之前的方括号中写的是啥? [复制]

rf中写的单接口如何批量执行

用文本框输入任意两个整数a,b,求a到b的总和,我写的咋算不出来,哭了,求求大佬