Camora丶

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2016年11月17日

摘要: <!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title></head><script src="../jquery-1.8.3.min.js" type="text/javascript 阅读全文
posted @ 2016-11-17 09:48 Camora丶 阅读(145) 评论(0) 推荐(0)

2016年6月29日

摘要: Array.prototype.indexOfArry = function(val) { for (var i = 0; i < this.length; i++) { if (this[i] == val) return i; } return -1;};Array.prototype.remo 阅读全文
posted @ 2016-06-29 15:34 Camora丶 阅读(105) 评论(0) 推荐(0)

摘要: $.ajax({ beforeSend:function(){ $("#showMes").html('loading...'); }, success:function(){ $("#showMes").html(''); } }); 阅读全文
posted @ 2016-06-29 15:31 Camora丶 阅读(593) 评论(0) 推荐(0)