如何在ColdFusion中设置jQuery?我已经下载了2.1.1.js创建了一个js文件夹文件并像这样调用库.. <script src="/js/jquery-2.1.1.js"></script>
我正在尝试这段代码,但由于某种原因我不能让这个工作任何建议或帮助?
$(document).ready(function () {
$('span.date').each(function() {
var dateFormat = $(this).text()
var dateFormat = $.datepicker.formatDate('MM/DD/YYYY', new Date(dateFormat));
//alert(dateFormat);
$(this).html(dateFormat + "<br>");
});
});
答案 0 :(得分:3)
您需要在此页面中添加jQuery UI
:http://code.jquery.com/。你需要两个:
jQuery-ui CSS (pick a theme that fits your design or appeals to you)
jQuery-ui JS
示例:
http://code.jquery.com/ui/1.11.1/jquery-ui.js
http://code.jquery.com/ui/1.11.1/themes/black-tie/jquery-ui.css
然后您的代码需要根据jQuery UI Datepicker API Documentation进行更改。您的代码不会按原样运行。请查看此处的各种示例:http://jqueryui.com/datepicker/,如果您仍需要帮助,请告诉我们。