- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
除了语法之外,这些函数之间没有太大区别:
$('.target').append('text');
$('text').appendTo('.target');
正如 jQuery docs 中所述:
The .append() 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.
那么在什么情况下最好使用 .append(),以及哪个 .appendTo() 更好?哪些代码示例仅适合这两个函数中的一个,而另一个则不够好?
同样的问题适用于:
最佳答案
你自己也说了——没什么区别。然而,我对使用内容的选择通常取决于方法链接,前提是您已经引用了元素。
即
var _target, _content;
_target.append(_content).addClass('foo');
// will add the foo class to _target
_content.appendTo(_target).addClass('foo');
// will add the foo class to _content
关于jquery - 在什么情况下最好使用 .append(),以及哪个 .appendTo()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11536994/
我认为这段代码应该可以工作,但它没有,有人可以解释一下吗? $("#addLinkLayout input.comment, #addLinkLayout input.link").each(fun
我有一个搜索框,并使用 Jquery 自动完成来获取我想要返回到自定义元素的搜索结果。 目前,每次搜索更改时它都会追加,从而导致重复。 我想知道是否有一个选项可以在搜索词更改时删除自定义元素的内容。
下面是我尝试过的两个代码: $( ""+ title +"" ).appendTo( "#sortable" ); $( "").html(title).appendTo( "#sortable" )
我有一个简单的 UL,其中所有 LI 都具有 class="event"。 以下 jQuery 未按预期工作。 $('#calendar-feed li.event').each(function()
确定相关 HTML: Cartridge Displays Cold Cast Bronze resin Figurines
我有一个变量,我想将其添加到其他文本中。我的第一个想法是: var wood = 5 $(wood+"bits of wood left" ).appendTo("#notifications");
我正在关注本教程 Drag Drop Inventory in Jquery 我遇到了问题。在教程附带的演示中,作者使用了以下代码: item.attr('src',drag_item.attr('s
我正在尝试做的(目前)是使用搜索字符串查询 Wikipedia API, $(document).ready(function() { $(".search").on("click", getAr
aaaaaa bbbbbb One Two Three ccc xxxxxx
我试图弄清楚是否可以使用 .appendTo() 将多个 jquery 对象添加到现有的 div 容器中。例如,我的代码示例目前类似于这样 var parentContainer = $(""),
我有这个 jquery 代码: function adaptMenu() { /* toggle menu on resize */ var screenWidth = (windo
我在 iframe 中有一个 php 文件,其中包含一个表单结果,我使用以下 jquery 代码在父文档中显示该结果。 在示例中,有 appendTo到 和一个输入元素。 据我测试,该代码在桌面浏览器
我使用appendTo将一组选定的元素添加到某个DOM元素: $('#incoming-items').appendTo($('#item-list')); (#incoming products 是
我正在使用 appendTo 将子 div 从一个父级移动到另一个父级。这是功能的一部分: $('#forum_holder_hidden').children().slice(0,5).append
这个问题在这里已经有了答案: Event binding on dynamically created elements? (23 个回答) 关闭 7 年前。
我基本上遇到了这个错误 Uncaught SyntaxError: Unexpected token } 这是哪一行 s.append( ); } '); var items = []
我使用 jQuery 在表格中添加行,带有一些输入/选择。我有一个显示的模板行:无,为了添加一个新行,我复制了这一行并将它放在我的表的 tbody 末尾。一些代码: CSS: .template {
我正在尝试将一些表单数据提交到 Servlet使用JQuery并检索 Servlet来自同一个的回应 JQuery 。请看下面的代码。 JSP Pa
我正在尝试将 ckeditor appendTo 方法与 javascript 中指定的配置选项结合使用: var config = {tabSpaces: 4}; editor1 = CKEDITO
因此,我向页面添加了四个独立于 Wordpress 循环的元素。我使用 jQuery appendto() 将它们添加到帖子列表中(循环)。除了最后一个之外,它工作正常......它似乎无法使用最后一
我是一名优秀的程序员,十分优秀!