
jquery
文章平均质量分 71
yj_Newcomer
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
封装函数
1、第一种:;(function($){ $.mask={ “yMask”:function(title,msg){ } };}调用:$("dom元素").click(function(){ $.mask.yMask("删除","确认删除?") });2、第二种:局部 ;(function($){ $.fn.extend({ “yMask”:functi...原创 2018-05-28 17:48:55 · 940 阅读 · 0 评论 -
dom对象和jquery对象互换
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <script src="js/jquery-1.7.1.js" type="text/j原创 2018-05-28 17:18:07 · 278 阅读 · 0 评论 -
jquery+ajax模糊查询
<script type="text/javascript"> $(function () { $.ajax({ url: "/json/json.json", type: "get", dataType: "json", succ...原创 2018-05-31 11:02:54 · 2054 阅读 · 0 评论 -
jquery+ajax搜索列表
<script type="text/javascript"> $(function () { var xhr = null; $("#search").click(function () { if (xhr) { xhr.abort();//如果ajax请求存...原创 2018-05-31 11:04:24 · 1029 阅读 · 0 评论 -
基于PNotify的消息提示Demo(轮询)
<!DOCTYPE html><html> <head> <title>Demo</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-转载 2018-06-19 10:32:53 · 693 阅读 · 0 评论