有人可以建议我如何调整此代码以允许我在我的网站的桌面和移动版本上使用日期选择器。
我在这里使用查询日期选择器http://jqueryui.com/datepicker/但由于我的桌面和移动网站在同一页面上,我不能两次起诉 id 'datepicker' 所以我该如何调整此代码以允许我也使用 m_datepicker 然后我可以将它应用到移动领域?
JS
<link rel="stylesheet" href="http://www.paycoservices.co.uk/styles/datepicker.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>