第二十节 jQuery操作属性
2021-04-06 14:26
标签:设置 地址 tle asc round www col jquery html 第二十节 jQuery操作属性 标签:设置 地址 tle asc round www col jquery html 原文地址:https://www.cnblogs.com/kogmaw/p/12493779.html 1 DOCTYPE html>
2 html lang="en">
3 head>
4 meta charset="UTF-8">
5 title>Documenttitle>
6 script type="text/javascript" src="../jquery-1.12.4.min.js">script>
7 script type="text/javascript">
8 $(function(){
9 var $a = $(‘.link‘);
10
11 // 读取class属性值,没有设置的属性读取为空,读取的图片地址为完整的绝对地址
12 console.log($a.prop(‘class‘));
13 console.log($a.prop(‘title‘));
14
15 // 设置属性值
16 $a.prop({‘href‘:‘http://www.baidu.com‘,‘title‘:‘百度网链接‘});
17
18 // 读标签里的内容
19 console.log($a.html());
20
21 // 往标签内写内容
22 console.log($a.html(‘这是再次写入的内容‘))
23 });
24 script>
25 head>
26 body>
27 a href="#" class="link">这是一个链接a>
28 body>
29 html>
上一篇:CSS线性渐变
下一篇:mybatis org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)