Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚读了这个,发现
$( "p" ).clone().add( "<span>Again</span>" ).appendTo( document.body );
但无法理解为什么span元素真的显示为块级元素。
span
演示
默认情况下span是内联元素。
您的示例中的块元素是段落p元素。这导致跨度被添加到它下面,因为段落占据了页面的所有宽度。
p
看看这个调试图像:
span 元素完全是内联的,请看这里
alert($('body').css('span'));
JSFIDDLE