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