Javascript - JSP 页面不会运行 .js 文件

发布于 2024-10-17 08:36:08 字数 1021 浏览 2 评论 0原文

我在 .js 文件中有 javascript 代码,用于验证文本字段,但当它是外部文件时,它将不起作用。我的意思是当代码与 JSP 分离时。

<script type="text/javascript"> 

function checkForm(form) 
{ 
    if(form.username.value == "") 
    { 
            alert("Error: Username cannot be blank!"); 
            form.username.focus(); return false; 
    }
}

</script> 

联合应用程序

<HEAD><script type="text/javascript" src="check.js"></script></HEAD>

<form name="register"  method="post" action="registerUser.jsp" onsubmit="return (checkForm(this) && false);">

<table summary="Register Form" cellspacing="15">
<tr>
<td align="right"> Username: </td> <td><input name="username" size=20 type="text"/></td> <td>*Min: 4 chars.</td>
</tr>

</table>

<div id="Buttons">
<p><input type="submit" value="Register">
<input type="reset" value="Reset Fields"></p>
</div>

</form>

I have javascript code in a .js file which validates the text fields but it won't work when it's an external file. I mean when the code is separated from the JSP.

<script type="text/javascript"> 

function checkForm(form) 
{ 
    if(form.username.value == "") 
    { 
            alert("Error: Username cannot be blank!"); 
            form.username.focus(); return false; 
    }
}

</script> 

JSP

<HEAD><script type="text/javascript" src="check.js"></script></HEAD>

<form name="register"  method="post" action="registerUser.jsp" onsubmit="return (checkForm(this) && false);">

<table summary="Register Form" cellspacing="15">
<tr>
<td align="right"> Username: </td> <td><input name="username" size=20 type="text"/></td> <td>*Min: 4 chars.</td>
</tr>

</table>

<div id="Buttons">
<p><input type="submit" value="Register">
<input type="reset" value="Reset Fields"></p>
</div>

</form>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

秋心╮凉 2024-10-24 08:36:08

删除标签。

<script type="text/javascript"> 
</script>

您需要从外部文件中

You need to remove the tags

<script type="text/javascript"> 
</script>

from the external file.

暖树树初阳… 2024-10-24 08:36:08

js 文件应该只包含 javascript 代码。 行包含 HTML 代码,而不是 JavaScript。从 .js 文件中删除它们。

The js file should only contains javascript code. The <script type="text/javascript"> line and the </script> line contain HTML code, not JavaScript. Remove them from the .js file.

沫离伤花 2024-10-24 08:36:08

对我来说效果很好。我知道这听起来很愚蠢,但是您是否从 check.js 文件中删除了标签?

It works ok for me. I know it sounds dumb, but did you removed the tags from the check.js file?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文