标签:style blog http ar io color os sp on
//防止退格键返回 $("#txtMsg").keydown(function (e) { var doPrevent; if (e.keyCode == 8) { var d = e.srcElement || e.target; if (d.tagName.toUpperCase() == ‘INPUT‘ || d.tagName.toUpperCase() == ‘TEXTAREA‘) { doPrevent = d.readOnly || d.disabled; } else doPrevent = true; } else doPrevent = false; if (doPrevent) e.preventDefault(); });
标签:style blog http ar io color os sp on
原文地址:http://www.cnblogs.com/gldblogs/p/4166433.html