复制代码 代码如下: <BR>$(function () { <BR>$('#Button1').click(function () { <BR>// var ha = '<p>a'; <BR>// $('div').append(ha); <BR>//1 <BR>// var w = '<a href="#">f4' <BR>// $('div').append(w); <BR>// var sele = '<select><option>1<option>2<option>3' <BR>// $('div').append(sele); <BR>}) <BR>}) <BR>//2var pstr = '<p><b><i>白日依山尽黄河入海流欲穷千里目更上一层楼'; $('div').append(pstr);将其改成用js来写,效果一样 <BR>function ha() { <BR>// var p= document.createElement('p'); <BR>// var b = document.createElement('b'); <BR>// var i = document.createElement('i'); <BR>// var neirong1 = document.createTextNode('白日依山尽'); <BR>// var br1=document.createElement('br') <BR>// var neirong2 = document.createTextNode('黄河入海流'); <BR>// var br2 = document.createElement('br') <BR>// var neirong3 = document.createTextNode('欲穷千里目'); <BR>// var br3 = document.createElement('br') <BR>// var neirong4 = document.createTextNode('更上一层楼'); <BR>// i.appendChild(neirong1); <BR>// i.appendChild(br1); <BR>// i.appendChild(neirong2); <BR>// i.appendChild(br2); <BR>// i.appendChild(neirong3); <BR>// i.appendChild(br3); <BR>// i.appendChild(neirong4); <BR>// <BR>// b.appendChild(i); <BR>// p.appendChild(b); <BR>// document.getElementById('div1').appendChild(p); <BR>} <BR>