08 2013 档案

摘要:先看下效果jsjQuery.extend({ prompt: function (text, type, times) { var prompt = $(['', text, ''].join('')).appendTo('body'); prompt.css('margin-left', -prompt.width()).fadeIn(); setTimeout(function () { prompt.fadeOut(function () { prompt.remove(); ... 阅读全文
posted @ 2013-08-05 08:42 Aphex 阅读(806) 评论(0) 推荐(2) 编辑
摘要:很久之前写的一个小型AJAX的js,放在上面以免以后想玩了找不到了。// version : 0.1 beta// author : __Ajaxfunction __Ajax(url,options){ var xhr = window.ActiveXObject && new window.ActiveXObject('Microsoft.XMLHTTP') || new XMLHttpRequest(); // 默认设置 options.method = options.method || 'GET'; options.onSuccess 阅读全文
posted @ 2013-08-05 06:49 Aphex 阅读(385) 评论(0) 推荐(0) 编辑