时间:2021-05-28
今天在写毕设的时候,用到了bootstrap-datetimepicker作为日期控件。
在git上clone下最新的代码,运行demo,发现控件区域整体下移1000px左右。
作为一个准备拿来就用的后台程序猿,此刻我的内心是崩溃的…
百度了很久,没有找到对应的解决方案,于是自己动手去源码修改。
最终解决方案:
打开源码,的bootstrap-datetimepicker.js文件
line 527行,打开这一段注释即可
如果看着还是不是很舒服的话,建议注释掉line 533 - line 544
top = top - containerOffset.top + 169;left = left - containerOffset.left + 210;为什么要这样解决呢?
place: function () { if (this.isInline) return; if (!this.zIndex) { var index_highest = 0; $('div').each(function () { var index_current = parseInt($(this).css('zIndex'), 10); if (index_current > index_highest) { index_highest = index_current; } }); this.zIndex = index_highest + 10; } var offset, top, left, containerOffset; if (this.container instanceof $) { containerOffset = this.container.offset(); } else { containerOffset = $(this.container).offset(); } if (this.component) { offset = this.component.offset(); left = offset.left; if (this.pickerPosition == 'bottom-left' || this.pickerPosition == 'top-left') { left += this.component.outerWidth() - this.picker.outerWidth(); } } else { offset = this.element.offset(); left = offset.left; } var bodyWidth = document.body.clientWidth || window.innerWidth; if (left + 220 > bodyWidth) { left = bodyWidth - 220; } top = top - containerOffset.top + 169; left = left - containerOffset.left + 210; this.picker.css({ top: top, left: left, zIndex: this.zIndex }); },上面就是相关的源码,可以看到,注释了line 527行之后,在后面引用了一个未初始化过的top变量
嗯… 这是一个没经过测试就提交的小BUG…
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一、下载bootstrap-datetimepicker时间选择器js,css文件。1.github地址:bootstrap-datetimepicker2.官
筒子们在使用bootstrap的日期控件(datepicker,现在官网提供的名称叫datetimepicker)时可能会遇到如上图的问题这是啥原因造成的呢?答
没用过bootstrap2,所以之间的差异不清楚,但是看往上基本上都是说bootstrap2与bootstrap-datetimepicker的使用,之间会有不
日期插件bootstrap-datetimepicker在火狐下出现一条报错信息:TypeError:(intermediatevalue).toString(
当在bootstrap的modal中使用ckeditor时,使用ckeditor中带弹框的功能时无法输入问题。解决方法:在jquery和bootstrap加载之