我在ascx页面使用jquery datepicker,它有滚动。 它在Chrome和IE 9中运行良好,但在IE11中运行不正常。我们为应用程序启用了兼容模式。如果我禁用此模式然后它工作正常但其他功能刹车。 我试图强制设置jquery中的顶部值,但它没有反映。
$('.clsFollowupDate').datepicker({
dateFormat: 'yy-mm-dd',
showWeek:true,
beforeShow: function(input, inst) {
$(input).removeAttr("onblur");
dataInp = input;
$('#ui-datepicker-div').style.top($(this).offset().top+document.documentElement.scrollTop+"px !important");
},
我无法在应用程序的其他部分禁用兼容模式。
如果我可以在该屏幕的中心显示日历也很好。但是它也应该显示在中心并带有滚动。
感谢您的回答