无法查看register.html文件在检查文件时,发现错误为“ SCRIPT1002:SCRIPT1002:语法错误style.js1,3”

问题描述

试图在Django中创建一个简单的注册和登录文件。 Login.html可以查看,但不能查看register.html文件。 在检查文件时,发现错误为 SCRIPT1002:SCRIPT1002:语法错误style.js(1,3)

style.js文件的语法错误是什么? 项目在Python-> Django

'''错误: 控制台x2 所有错误警告信息日志保留日志

 HTML1300: Navigation occurred.
127.0.0.1:8000 (1,1)

 SCRIPT1002: SCRIPT1002: Syntax error
style.js (1,3)

 HTML1300: Navigation occurred.
register (1,3)

style.js 
$('.message a').click(function(){
   $('form').animate({height: "toggle",opacity: "toggle"},"slow");
});

style.css
@import url(https://fonts.googleapis.com/css?family=Roboto:300);

.login-page {
  width: 360px;
  padding: 8% 0 0;
  margin: auto;
}
.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0,0.2),0 5px 5px 0 rgba(0,0.24);
}
.form input {
  font-family: "Roboto",sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form button {
  font-family: "Roboto",sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #4CAF50;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
  background: #43A047;
}
.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.form .message a {
  color: #4CAF50;
  text-decoration: none;
}
.form .register-form {
  display: none;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}
.container:before,.container:after {
  content: "";
  display: block;
  clear: both;
}
.container .info {
  margin: 50px auto;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a;
}
.container .info span {
  color: #4d4d4d;
  font-size: 12px;
}
.container .info span a {
  color: #000000;
  text-decoration: none;
}
.container .info span .fa {
  color: #EF3B3A;
}
body {
  background: #76b852; /* fallback for old browsers */
  background: -webkit-linear-gradient(right,#76b852,#8DC26F);
  background: -moz-linear-gradient(right,#8DC26F);
  background: -o-linear-gradient(right,#8DC26F);
  background: linear-gradient(to left,#8DC26F);
  font-family: "Roboto",sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

login.html
{% load static %}

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Login</title>
    <link rel="stylesheet" href="{% static 'vdapp/css/style.css' %}" />
    <script src="{% static 'vdapp/js/style.js' %}" type="text/javascript"></script>
</head>
<body>
<h1> Login</h1>
<div class="login-page">
  <div class="form">
   <form action ="{% url 'login' %}" method="post">
        {% csrf_token %}
      <input type="text" name="username" placeholder="username"/>
      <input type="password" name="password" placeholder="password"/>
      <button>Login</button>
      <p class="message">Not registered? <a href="{% url 'register' %}">Create an account</a></p>
    </form>
  </div>
</div>
</body>
</html>
register.html

{% load static %}

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Login</title>
    <link rel="stylesheet" href="{% static 'vdapp/css/style.css' %}" />
    <script src="{% static 'vdapp/js/style.js' %}" type="text/javascript"></script>
</head>
<body>
<h1> Register</h1>
  <div class="login-page">
  <div class="form">
    <form class="register-form" action ="{% url 'register' %}">
      <input type="text" placeholder="name"/>
      <input type="password" placeholder="password"/>
      <input type="text" placeholder="email address"/>
      <button>create</button>
      <p class="message">Already registered? <a href="{% url 'login' %}">Sign In</a></p>
    </form>
     </div>
</div>
</body>
</html> 

Directory Structure

vdproject
vdapp
 +static
  +js
   +style.js
  +css
   +style.css
 +templates
  +register.html

'''

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...