0
我在.net MVC5中使用js文件我寫在.js文件中的datepicker代碼Installation.js我的datepicker代碼不工作。日期選擇器不工作,而使用.js文件
(function() {
Installation.func.initailElement = function() {
$('#datepicker1').datepicker({
beforeShowDay: function (dt) {
var noWeekend = $.datepicker.noWeekends(dt);
var bDisable = noWeekend[0] ? arrDisabledDates[dt] : noWeekend
if (bDisable)
return [false, '', ''];
else
return [true, '', ''];
},
minDate: Installation.func.customDate(),
showOn: "both",
buttonImage: "~/assets/css/theme/flush-datepicker.gif",
buttonImageOnly: true
});
Installation.func.bindEvents();
};
})();
對於部分視圖的代碼我已經在我的部分視圖中包含了所需的.js文件。
<body>
<div class="fui-form-body">
<input type="text" id="datepicker" name="datepicker" class="fui-input-width-2">
</div>
</body>
謝謝。 @Shaunak D – Ashu