jQuery操作元素追加内容示例
程序员文章站
2024-03-30 21:40:15
本文实例讲述了jquery操作元素追加内容。分享给大家供大家参考,具体如下:
jquer...
本文实例讲述了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 testappend(){ //获取需要操作的对象 var showdiv=$("#showdiv"); //进行添加操作,指定内容的追加 showdiv.append("<b>赛高</b>"); //在对象内部的后面添加指定的内容,其是html可解析的内容,和html不同的是:html重新赋值(覆盖)这个在内容后面追加 } function testappend2(){ //获取需要操作的对象 var u2=$("#u2"); //进行添加操作,指定内容的追加 // u2.appendto("#show01"); //在对象的内部后面添加利用选择器选择的对象内容,把前面的对象移动到后面的对象的内部后面(一个剪切复制操作) $("#u2").appendto(show01); } function testprepend(){ //获取需要操作的对象 var showdiv=$("#showdiv"); //进行添加操作,指定内容的追加 showdiv.prepend("<i>境界的彼方</i>"); //在对象的内部前面添加内容 } function testprependto(){ //获取需要操作的对象 var showdiv=$("#showdiv"); //进行添加操作,指定内容的追加 $("#u2").prependto(showdiv); //在对象的内部前面添加选择器的对象(移动到) // showdiv.prependto("#u2"); } //外部插入 function testafter1(){ //获取需要操作的对象 var showdiv=$("#showdiv"); //进行添加操作,指定内容的追加 showdiv.after("<b>もちろん</b>"); //在对象的外部的后面添加内容 } function testafter2(){ //获取需要操作的对象 var showdiv=$("#showdiv"); //进行添加操作,指定内容的追加 $("#u2").insertafter(showdiv); //在对象的外部的后面添加选择器的对象(移动到) // showdiv.prependto("#u2"); } function testbefore1(){ //获取需要操作的对象 var showdiv=$("#showdiv"); //进行添加操作,指定内容的追加 showdiv.before("<b>もちろん</b>"); //在对象的外部的前面添加内容 } function testbefore2(){ //获取需要操作的对象 var showdiv=$("#showdiv"); //进行添加操作,指定内容的追加 $("#u2").insertbefore(showdiv); //在对象的内部前面添加选择器的对象 // showdiv.prependto("#u2"); } </script> <style type="text/css"> #showdiv{ width: 300px; height: 300px; border: solid 1px; } #show01{ width: 300px; height: 300px; border: solid 1px; } </style> </head> <body> <h3>jquery操作文档结构</h3> <h4>内部操作</h4> <input type="button" name="" id="" value="测试追加内容--append" onclick="testappend()"/> <input type="button" name="" id="" value="测试移动内容--appendto" onclick="testappend2()"/> <input type="button" name="" id="" value="测试追加内容--prepend" onclick="testprepend()"/> <input type="button" name="" id="" value="测试移动内容--prependto" onclick="testprependto()"/> <hr /> <h4></h4> <input type="button" name="" id="" value="测试追加内容--after" onclick="testafter1()"/> <input type="button" name="" id="" value="测试移动内容--after" onclick="testafter2()"/> <input type="button" name="" id="" value="测试追加内容--before" onclick="testbefore1()"/> <input type="button" name="" id="" value="测试移动内容--before" onclick="testbefore2()"/> <hr /> <div id="showdiv"> <i>clannad</i> </div><br /><br /> <div id="show01"> <!--<u>clannad after story</u>--> </div> <span id="u2"><u>clannad after story</u></span> <hr /> </body> </html>
感兴趣的朋友可以使用在线html/css/javascript代码运行工具:http://tools.jb51.net/code/htmljsrun测试上述代码运行效果。
上一篇: 设计模式之装饰者模式(一)
下一篇: 程序员脱发?看看各个创始人的发量?
推荐阅读