禁止浏览器窗口滚动的同时保留滚动条,以及滚动条被禁止滚动后,再次启用滚动条滚动的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之后的版...