在Laravel 5.6应用程序中无法使用jQuery代码

时间:2018-11-05 14:31:24

标签: javascript php jquery css laravel-5

使用Laravel 5.6,单击按钮后,我打开了以下表单,

<button class="open-button" onclick="openForm()">Open Form</button>

<div class="form-popup" id="myForm">
  <form action="/action_page.php" class="form-container">
    <h1>Login</h1>

    <label for="email"><b>Email</b></label>
    <input type="text" placeholder="Enter Email" name="email" required>

    <label for="psw"><b>Password</b></label>
    <input type="password" placeholder="Enter Password" name="psw" required>

    <button type="submit" class="btn">Login</button>
    <button type="button" class="btn cancel" onclick="closeForm()">Close</button>
  </form>
</div>

和以下脚本代码加载文件,

<script>
function openForm() {
    document.getElementById("myForm").style.display = "block";
}

function closeForm() {
    document.getElementById("myForm").style.display = "none";
}
</script>

及其后的CSS,

<style>
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}
<style>

我已经用这样的外部css文件加载了css文件,

<link href="{{ asset('css/report.css') }}" rel="stylesheet">

和外部文件js为

<script src="{{ url('/js/report.js') }}"></script>

我的css文件正在加载,但js文件不起作用,如何解决此问题?

2 个答案:

答案 0 :(得分:0)

尝试:

<script src="{{ asset('js/report.js') }}"></script>

在开始时删除正斜杠,并在js目录位于公用文件夹中的情况下使用帮助器资产

答案 1 :(得分:0)

将路径更改为

<link href="{{ public_path('css/report.css') }}" rel="stylesheet">

<script src="{{ public_path('js/report.js') }}"></script>

如果您使用辅助功能assets,则文件应存储在公共/资产中。否则,您应该看看this的答案。

它也应该有助于您查看源代码,css和js文件的确切URL是什么,以及路径是否正确。