标签:字符 taf blank 定位 clone 需要 creat hello append
var oli = document.createElement(‘li‘); oli.innerHTML = ‘哈哈哈‘; $(‘ul‘).append(‘<li>1233</li>‘); $(‘ul‘).append(oli); $(‘ul‘).append($(‘#app‘));
$(‘<li>天王盖地虎</li>‘).appendTo($(‘ul‘)).addClass(‘active‘)
$(‘ul‘).prepend(‘<li>我是第一个</li>‘)
$(‘<a href="#">路飞学诚</a>‘).prependTo(‘ul‘)
$(‘ul‘).after(‘<h4>我是一个h3标题</h4>‘)
$(‘<h5>我是一个h2标题</h5>‘).insertAfter(‘ul‘)
$(‘ul‘).before(‘<h3>我是一个h3标题</h3>‘)
$(‘<h2>我是一个h2标题</h2>‘).insertBefore(‘ul‘)
$(‘button‘).click(function() { // 1.clone():克隆匹配的DOM元素 // 2.clone(true):元素以及其所有的事件处理并且选中这些克隆的副本(简言之,副本具有与真身一样的事件处理能力) $(this).clone(true).insertAfter(this); })
//将所有的h5标题替换为a标签 $(‘h5‘).replaceWith(‘<a href="#">hello world</a>‘) //将所有h5标题标签替换成id为app的dom元素 $(‘h5‘).replaceWith($(‘#app‘));
$(‘<br/><hr/><button>按钮</button>‘).replaceAll(‘h4‘)
$(‘ul‘).remove();
var $btn = $(‘button‘).detach() //此时按钮能追加到ul中 $(‘ul‘).append($btn)
//清空掉ul中的子元素,保留ul $(‘ul‘).empty()
.css(width)
和 .width()
之间的区别是后者返回一个没有单位的数值(例如,400
),前者是返回带有完整单位的字符串(例如,400px
)。当一个元素的宽度需要数学计算的时候推荐使用.width()
方法 。.offset()
返回一个包含top
和 left
属性的对象 。visibility:hidden
,那么我们依然可以取得它的坐标$("p").offset({ top: 10, left: 30 });
标签:字符 taf blank 定位 clone 需要 creat hello append
原文地址:https://www.cnblogs.com/qicun/p/9755301.html