随笔分类 -  jQuery

摘要:1、jQuery引入 a、在本地直接引入——<script src="jquery-1.10.2.min.js"></script> b、在CDN上引入——<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"> </ 阅读全文
posted @ 2020-08-14 21:09 赛德·乌漆嘛黑 阅读(113) 评论(0) 推荐(0)
摘要:1、jQuery对HTML的捕获和设置。 1、html() $(".box1").html("<p>我是div里面的p</p>"); console.log($(".box1").html()); 可以捕获元素、内容也可以设置元素、内容。 2、text() $(".box2").text("text 阅读全文
posted @ 2020-08-13 09:46 赛德·乌漆嘛黑 阅读(282) 评论(0) 推荐(0)