JS未在Laravel内容刀片标签中运行

时间:2018-07-14 06:22:52

标签: php laravel laravel-blade

我运行以下代码:源:http://jqueryui.com/datepicker/#show-week。我正在运行laravel php框架

当我清除路线中的所有内容并经过代码后,它就起作用了!

但是

当我将其放入内容中时..... @extends('layouts.app')@section('content')和 @endsection停止工作。

  • 当我原样通过ENTIRE代码时,两者都是。
  • 而且当我仅将js和css插入到布局应用扩展内的标头中时

出了什么问题? 控制台中没有错误。文件正在加载

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>jQuery UI Datepicker - Show week of the year</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
  $( function() {
    $( "#datepicker" ).datepicker({
      showWeek: true,
      firstDay: 1
    });
  } );
  </script>
</head>
<body>

<p>Date: <input type="text" id="datepicker"></p>


</body>
</html>

2 个答案:

答案 0 :(得分:0)

尝试将JS放在body标签之后的layouts.app中,然后将其扩展到所需的页面。

答案 1 :(得分:0)

  • 不要忘记在该节的末尾添加@endsection。
  • 此外,通过检查工具检查您的代码。检测脚本的加载位置,并确认它们已包含在页面末尾。