Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我做错了什么,我的日历日期选择器仅在我像这样在我的 html 页面中实现 JavaScript 代码时才有效
<script> $(function() { $( ".datepick" ).datepicker(); }); </script>
但是当我将代码放在外部时不起作用。
$(document).ready(function() { $( ".datepick" ).datepicker(); });