禁止浏览器窗口滚动的同时保留滚动条,以及滚动条被禁止滚动后,再次启用滚动条滚动的jquery代码如下:
/**禁用滚动条**/
function unableScroll() {
var top = $(document).scrollTop();
$(document).on('scroll.unable',function (e) {
$(document).scrollTop(top);
})
}...
使用jquery.form.js插件,提交表单的时间,提示错误$.handleError is not a function的错误,完整错误如下:
TypeError: $.handleError is not a function jquery.form.js:339:7
错误原因:
$.handleError存在于jQuery-1.4.2之前的版本中,jQuery-1.4.2之后的版...
外边距属性margin和内边距属性padding取百分比值的时候,无论是left、right或top、bottom,都是以其父元素的宽值(width)作为参照物(即分母top/width),这是W3C的规范,官方原文如下:
Note that in a horizontal flow, percentages on ‘margin-top’ and ‘margin-bottom’ are relative to...