随笔分类 - JQuery
摘要:// 监听回车事件 // document.onkeydown=keyDownSearch; function keyDownSearch(e) { //回车函数 // 兼容FF和IE和Opera var theEvent = e || window.event; var code = theEve
阅读全文
摘要:var todayDate = new Date("2017-08-15"); //初始化时间(时间戳) var maxDate = new Date(); maxDate.setDate(todayDate.getDate()+20); //时间加20天 var maxTime = getNowFormatDateToD...
阅读全文
摘要:// on removeClass addClass slice $('.pic-subgroup').on('click',function(){ $('.pic_div.active').removeClass('active'); $(this).addClass('active'); var src = $(this).children('img').attr('src'); var t...
阅读全文
摘要:$.ajax({ url: '', type: 'post', data: {‘id':id}, dataType: 'json', success: function(data,statusText){ //待补充 }, error: function(xhr,e1,e2){ alert('系统错误'); } });
阅读全文
摘要://-----------------------------直接调用函数就可以了------------------------------ setCookie("test","en",1800); //设置cookie的值,生存时间半个小时 alert(getCookie('test')); //取得cookie的值,显示tan...
阅读全文
摘要://对于 加载过来class 的del_a 实现点击事情 $(document).on('click',".del_a",function(){ $(".mark_id").val($(this).parent().parent().find(".c_c_id_td").text()); ...
阅读全文