摘要:
1、https://www.runoob.com/ 菜鸟教程 2、https://www.w3school.com.cn/ w3school 3、https://leetcode.cn/ 力扣(刷题) 4、老白前端:https://www.yzktw.com.cn/css 5、https://www 阅读全文
posted @ 2022-10-17 18:00
yinghualeihenmei
阅读(142)
评论(0)
推荐(0)
摘要:
来源:https://blog.csdn.net/weixin_45750972/article/details/122503767 HTML link 标签和script标签 1.link标签 <head><link rel="stylesheet" type="text/css" href="t 阅读全文
posted @ 2022-10-17 15:45
yinghualeihenmei
阅读(210)
评论(0)
推荐(0)
摘要:
来源:https://blog.csdn.net/shengyin714959/article/details/125009120 HTML概述 1.1 什么是HTMLHTML是做网站的、Web开发、互联网生态开发(PC端+移动端+微应用) 目前我们使用的都是HTML5,支持传统的PC端开发,还支持 阅读全文
posted @ 2022-10-17 15:34
yinghualeihenmei
阅读(400)
评论(0)
推荐(0)
摘要:
https://www.yisu.com/zixun/629770.html https://www.cnblogs.com/webSnow/p/15356723.html meta是html语言head区的一个辅助性标签。meta标签的作用有:搜索引擎优化(SEO),定义页面使用语言,自动刷新并指 阅读全文
posted @ 2022-10-17 15:07
yinghualeihenmei
阅读(140)
评论(0)
推荐(0)
摘要:
https://www.runoob.com/jquery/html-html.html 改变所有 <p> 元素的内容: $("button").click(function(){ $("p").html("Hello <b>world</b>!"); }); 定义和用法 html() 方法设置或返 阅读全文
posted @ 2022-10-17 14:16
yinghualeihenmei
阅读(27)
评论(0)
推荐(0)
摘要:
https://www.jquery123.com/nextAll/ 获得每个匹配元素集合中所有下面的同辈元素,选择性筛选的选择器。 如果一个jQuery对象代表了一组DOM元素,.nextAll()方法允许我们在DOM树上遍历所有元素的后继元素,并且构建一个新的匹配元素的jQuery对象。 该方法 阅读全文
posted @ 2022-10-17 13:51
yinghualeihenmei
阅读(79)
评论(0)
推荐(0)
摘要:
https://blog.csdn.net/weixin_42648692/article/details/86294123 attr()方法是jQuery操作属性的一个方法。可以根据参数的不同,来获取或设置属性值。.attr()方法常用的四个表达形式:1 $(selector).attr(传入属性 阅读全文
posted @ 2022-10-17 13:32
yinghualeihenmei
阅读(265)
评论(0)
推荐(0)
摘要:
https://www.w3school.com.cn/jquery/effect_slidetoggle.asp slideToggle() 方法通过使用滑动效果(高度变化)来切换元素的可见状态。 如果被选元素是可见的,则隐藏这些元素,如果被选元素是隐藏的,则显示这些元素。 $(".searchb 阅读全文
posted @ 2022-10-17 11:55
yinghualeihenmei
阅读(47)
评论(0)
推荐(0)
摘要:
https://product.pconline.com.cn/itbk/software/dnyw/1703/8977166.html js是javascript文件的扩展名,例如xx.js,javascript是一种程序语言,主要用于网页的特效、功能的脚本编程,是一种很强大的脚本语言,在网站的前 阅读全文
posted @ 2022-10-17 11:40
yinghualeihenmei
阅读(2827)
评论(0)
推荐(0)
摘要:
https://www.runoob.com/jquery/event-live.html live() 方法在 jQuery 版本 1.7 中被废弃,在版本 1.9 中被移除。请使用 on() 方法代替。 live() 方法为被选元素添加一个或多个事件处理程序,并规定当这些事件发生时运行的函数。 阅读全文
posted @ 2022-10-17 11:34
yinghualeihenmei
阅读(25)
评论(0)
推荐(0)