jQuery操作元素的内容和样式完整实例分析
程序员文章站
2022-07-02 19:42:18
本文实例讲述了jquery操作元素的内容和样式。分享给大家供大家参考,具体如下:
jqu...
本文实例讲述了jquery操作元素的内容和样式。分享给大家供大家参考,具体如下:
<html> <head> <title>jquery操作元素的样式和内容</title> <meta charset="utf-8"/> <script src="http://libs.baidu.com/jquery/1.9.1/jquery.min.js"></script> <script type="text/javascript"> //操作元素的样式 function testhtml1(){ //获取要操作的对象 var showdiv=$("#showdiv"); //操作对象的内容 alert(showdiv.html()); //我们获得是对象中的内容,没有进行html执行的源代码内容,不论是标签还是内容 } function testhtml2(){ //获取要操作的对象 var showdiv=$("#showdiv"); //在对象中进行元素添加操作 showdiv.html("<b>clannad 赛高!</b>"); //会对html标签进行解析执行 } function testhtml3(){ //获取要操作的对象 var showdiv=$("#showdiv"); //在对象中进行元素拼接操作 showdiv.html(showdiv.html()+"<b>clannad 赛高!</b>"); //可以进行字符的拼接,其中showdiv的返回值是一个字符串,我们利用+进行拼接 } function testtext1(){ //获取要操作的对象 var showdiv=$("#showdiv"); //在对象中进行元素添加操作 alert(showdiv.text()); //显示的结果不会包含标签 } function testtext2(){ //获取要操作的对象 var showdiv=$("#showdiv"); //在对象中进行元素添加操作 showdiv.text("<b>古河渚 赛高!</b>"); //会把整个文本内容写入div,不会解析标签 } //操作元素的样式 function testcss1(){ //获取对象 var showdiv=$("#showdiv"); //添加样式 showdiv.css("background-color","yellow"); //获取对象的对应元素值 alert(showdiv.css("width")); //返回输入属性的值 } function testcss2(){ //获取对象 var showdiv=$("#show2"); //添加样式 showdiv.css({"background-color":"purple","border":"solid 1px"}); //我们利用{}把多个属性括起来一次设置几种元素样式,不同属性之间用,分割,元素的赋值用: } function testaddclass(){ //获取对象 var div=$("#show2"); //添加一个类属性 div.addclass("common"); //叠加类属性 div.addclass("word"); //一个对象可以添加多个类属性,注:如果原对象含有这个属性,类属性的值不会将其覆盖 } function testremoveclass(){ //获取对象 var div=$("#show2"); //添加一个类属性 div.remove("word"); //移除对象的一个类属性 } </script> <style type="text/css"> #showdiv{ width: 300px; height: 300px; border: solid 1px; /*background-color: yellow;*/ } #show2{ width: 300px; height: 300px; /*border: solid 1px yellow;*/ /*background-color: purple;*/ } .common{ width: 300px; height: 300px; border: solid 2px yellow; background-color: red; } .word{ font-size: 40px; font-size: bold; } </style> </head> <body> <h3>jquery操作元素的样式和内容</h3> <hr /> <input type="button" name="" id="" value="测试对象内容-html" onclick="testhtml1()"/> <input type="button" name="" id="" value="测试对象添加内容-html" onclick="testhtml2()"/> <input type="button" name="" id="" value="测试对象拼接内容-html" onclick="testhtml3()"/> <input type="button" name="" id="" value="测试对象内容-text" onclick="testtext1()"/> <input type="button" name="" id="" value="测试对象添加内容-text" onclick="testtext2()"/> <hr /> <input type="button" name="" id="" value="测试对象样式" onclick="testcss1()"/> <input type="button" name="" id="" value="测试对象样式---json" onclick="testcss2()"/> <input type="button" name="" id="" value="测试对象添加类样式" onclick="testaddclass()"/> <input type="button" name="" id="" value="测试对象移除类样式" onclick="testremoveclass()"/> <hr /> <div id="showdiv"> <b>古河渚 赛高!</b> </div> <div id="show2"> clannad after story </div> </body> </html>
感兴趣的朋友可以使用在线html/css/javascript代码运行工具:http://tools.jb51.net/code/htmljsrun测试上述代码运行效果。
下一篇: 正则表达式学习笔记
推荐阅读
-
jQuery动态生成的元素绑定事件操作实例分析
-
jQuery HTML获取内容和属性操作实例分析
-
jQuery操作元素的内容和样式完整实例分析
-
jquery选择器和属性对象的操作实例分析
-
JS和jquery操作css样式实例分析
-
JQuery操作tr和td内容的方法实例
-
jQuery动态生成的元素绑定事件操作实例分析
-
jquery操作select元素和option的实例代码_jquery
-
表单元素获取,dom树的遍历与常用属性,dom元素的增删改, js操作元素内容,留言板实例,dataset对象,获取元素计算样式,classList 对象常用方法 ,事件的添加与派发
-
jquery选择器和属性对象的操作实例分析