如何通过操作方法添加jQuery选择器?

前端之家收集整理的这篇文章主要介绍了如何通过操作方法添加jQuery选择器?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果内容添加到DOM中,例如,
$("ul").append("<li>test</li>");

如何获取参考,添加内容不得不选择新添加内容

从append()方法分配返回值是jQuery对象.

var newContent=$("ul").append("<li>test</li>");

可以做的

var newContent=$("ul li:last");

但是有没有办法让它更直接?

谢谢

@R_404_323@

使用 .appendTo()

Insert every element in the set of matched elements to the end of the target

The 07001 and .appendTo() methods perform the same task. The major difference is in the Syntax-specifically,in the placement of the content and target. With .append(),the selector expression preceding the method is the container into which the content is inserted. With .appendTo(),on the other hand,the content precedes the method,either as a selector expression or as markup created on the fly,and it is inserted into the target container…

原文链接:https://www.f2er.com/jquery/176253.html

猜你在找的jQuery相关文章