我在设计文件夹中有以下用于登录的login.html页面。
<html>
<head>
<title>Login Page</title>
<script src="../Script/login.js">
</script>
</head>
<body>
<h3> Login</h3>
<form name="login">
Location code : <select name="ddl1"><br>
<option value="loc1" size=20>LH</option>
<option value="loc2">AT</option>
<option value="sel" selected>-------select------</option>
</select>
<br><br>
Enter UserName : <input type="Text" name="inp1" size=20><br><br>
Enter Password : <input type="password" name="pwd1" size=20><br><br>
<button type="button" name="login" onclick="log()">Login</button>
</form>
</body>
</html>
我还有另外一个名为scripts的文件夹,其中包含以下login.js文件
function log()
{
var li=parent.head.document.getElementById('lin');
var lo=parent.head.document.getElementById('lou');
var passid = document.login.pwd1.value;
var passid_len = passid.length;
var un=document.login.inp1.value;
var e = document.getElementById("ddl1");
var strUser = e.options[e.selectedIndex].value;
if(strUser=="loc1" || strUser=="loc2")
{
if (passid_len >= 5)
{
if(un=="admin")
{
parent.nav1.location.href = 'nav_admin.html';
document.write("Hello admin");
li.style.display = "none";
lo.style.display = "";
}
else if(un=="clerec")
{
parent.nav1.location.href = 'nav_clerk_reception.html';
document.write("Hello reception clerk");
li.style.display = "none";
lo.style.display = "";
}
else if(un=="cledep")
{
parent.nav1.location.href = 'nav_clerk_departemnt_operations.html';
document.write("Hello dept clerk");
li.style.display = "none";
lo.style.display = "";
}
else if(un=="guest")
{
parent.nav1.location.href = 'nav_guest.html';
document.write("Hello Guest");
li.style.display = "none";
lo.style.display = "";
}
else
{
document.write("Wrong user name and password");
}
}
else
{
document.write("password should be minimum 5 characters");
}
}
else
{
document.write("Choose Location");
}
}
function fnlog1()
{
var lo=parent.head.document.getElementById('lou');
var li=parent.head.document.getElementById('lin');
lo.style.display = "none";
li.style.display = "";
parent.nav1.location.href = 'navigate.html';
}
当我点击log in
按钮时没有任何效果....没有重定向发生.... html页面没有调用log()
函数....
答案 0 :(得分:9)
首先,您要链接此处的文件:
<script src="../Script/login.js">
哪会将网站引导到文件夹Script
中的文件,但是在第二段中你说文件夹名称是
我还有另一个名为scripts的文件夹,其中包含以下login.js文件
所以,这不行!因为您没有访问正确的文件。为此,请将代码编写为
<script src="/script/login.js"></script>
尝试从代码的开头删除..
。
这样,您将到达运行该函数的js文件!
只是为了确保:
只是为了确保文件附加到HTML DOM,然后请打开开发人员工具(F12),并在网络工作区中记下浏览器向服务器发出的每个请求。通过这种方式,您将了解哪些文件已加载,哪些文件未加载,以及它们为何不加载!
祝你好运。答案 1 :(得分:2)
您的foldername是scripts
?
更改
<script src="../Script/login.js">
到
<script src='scripts/login.js' type='text/javascript'></script>
答案 2 :(得分:1)
我遇到了这个问题,但我发现这是一个权限问题,我将权限更改为0744,现在可行了。我不知道这是不是你的问题,但它对我有用。
答案 3 :(得分:0)
您的文件夹名称是脚本..
你正在引用它像../ script / login.js
还要确保脚本文件夹位于项目目录中
由于
答案 4 :(得分:0)
我忘记删除源文件中的<script> <\script>
。
是的...我知道