我有2个页面,每个页面都有datepicker,
打开第一个页面时,datepicker能显示,
跳转到第二个页面时,datepicker不显示,
再跳转到第一个页面时,datepicker也不显示了,
刷新后,打开第一个页面能显示,第二个不能
附代码:mvc3
页面跳转
$("#page1").click(function () { $("#contentBox").load("/page1?id=" + Math.random()); currentMenu($(this)); });
$("#page2").click(function () { $("#contentBox").load("/page2?id=" + Math.random()); currentMenu($(this)); });
datepicker 显示
$(function () {
$("#btn1").datepicker($.datepicker.regional['zh-CN']);
$("#btn2").datepicker($.datepicker.regional['zh-CN']);
});