我运行以下代码:源:http://jqueryui.com/datepicker/#show-week。我正在运行laravel php框架
当我清除路线中的所有内容并经过代码后,它就起作用了!
但是
当我将其放入内容中时..... @extends('layouts.app')@section('content')和 @endsection停止工作。
出了什么问题? 控制台中没有错误。文件正在加载
<!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>
答案 0 :(得分:0)
尝试将JS放在body标签之后的layouts.app中,然后将其扩展到所需的页面。
答案 1 :(得分:0)