随笔分类 -  jquery

摘要:code $.get("/weather_code/", { city:"上海", time:"2019-04-05" }, function(result){ alert("返回数据: \n" + "reason:"+ result.reason +"\n"+"weather_name:"+ re 阅读全文
posted @ 2020-12-24 00:09 anobscureretreat 阅读(66) 评论(0) 推荐(0) 编辑
摘要:code $.ajax({ url: "/cal/", type: "post", data: { "n1":$("#num1").val(), "n2":$("#num2").val(), }, success:function (data) { console.log(data); $("#re 阅读全文
posted @ 2020-12-24 00:08 anobscureretreat 阅读(280) 评论(0) 推荐(0) 编辑
摘要:code <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <h1>Ajax 发送 get 请求</h1> <input type="button 阅读全文
posted @ 2020-12-23 23:55 anobscureretreat 阅读(105) 评论(0) 推荐(0) 编辑
摘要:get请求 $.ajax({ url:'test.php?type=1&id='+id, //url带参数 type:'GET', //请求方式 cache:false, //缓存 success: function(data){ //请求成功后返回数据data $('body').html(dat 阅读全文
posted @ 2020-12-23 23:54 anobscureretreat 阅读(120) 评论(0) 推荐(0) 编辑
摘要:code1 function (data) { data = data || {} $.ajax({ type: "POST", url: data.url, contentType: "application/json; charset=utf-8", data: JSON.stringify(d 阅读全文
posted @ 2020-12-23 23:52 anobscureretreat 阅读(345) 评论(0) 推荐(0) 编辑
摘要:在使用imgbox.js是出现的jquery版本不兼容问题,之后了解到jQuery.noConflict()的用法 jQuery.noConflict()的存在只有一个目的:它允许你在同一个页面加载多个jQuery实例,尤其是不同版本的jQuery。 code <link rel="styleshe 阅读全文
posted @ 2020-12-23 23:42 anobscureretreat 阅读(454) 评论(0) 推荐(0) 编辑
摘要:code http://www.htmleaf.com/js/jquery/jquery-1.9.1.html 阅读全文
posted @ 2020-12-23 16:39 anobscureretreat 阅读(125) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.jb51.net/article/128874.htm https://www.cnblogs.com/stubborn-donkey/p/7248618.html 阅读全文
posted @ 2019-09-14 21:59 anobscureretreat 阅读(4665) 评论(0) 推荐(0) 编辑
摘要:获取select 选中的 text : $("#test").find("option:selected").text(); 获取select选中的 value: $("#test").val(); 获取select选中的索引: $("#test").get(0).selectedindex; 设置select: 设置select 选中的索引: ... 阅读全文
posted @ 2019-09-14 18:57 anobscureretreat 阅读(3041) 评论(0) 推荐(0) 编辑
摘要:1. 数组中添加map 2. 数组遍历输出 3. 类似字典(map)遍历 4. 字典声明时赋值 demo2 5. 字典里value为数组, 数组内为字典 阅读全文
posted @ 2019-04-18 22:25 anobscureretreat 阅读(5172) 评论(0) 推荐(0) 编辑
摘要:if($('#progress_bar').is(":visible")){ $('#progress_bar').hide(); } 阅读全文
posted @ 2019-04-18 13:55 anobscureretreat 阅读(1049) 评论(0) 推荐(0) 编辑
摘要:设置内容 - text()、html() 以及 val() 我们将使用前一章中的三个相同的方法来设置内容: text() - 设置或返回所选元素的文本内容 html() - 设置或返回所选元素的内容(包括 HTML 标记) val() - 设置或返回表单字段的值 下面的例子演示如何通过 text() 阅读全文
posted @ 2019-02-28 18:06 anobscureretreat 阅读(145) 评论(0) 推荐(0) 编辑