12 2016 档案
摘要:/** * 内容改变时并不会触发事件,但是在失去焦点的时候会触发。 */ $("#inputid").change(function(){ console.log($(this).val()); }); /** * 只要文本类容发生改变,就会触发该事件 */ $("#inputid").bind("input propertychange",function(){ cons...
阅读全文
摘要:requestType = request.getHeader("X-Requested-With"); if(requestType==null){//form表单请求 }else{//ajax请求 }
阅读全文