jQuery相当于.appendTo()但是对于.html()

时间:2014-06-05 22:54:40

标签: jquery

我想更改选择器的顺序以匹配.appendTo()的语法。例如,有两种方法可以将元素附加到容器中......请参阅后一种方法如何在最后指定容器?

$('.container').append($('<div />').text('hello'));

$('<div />').text('hello').appendTo('.container');

要用元素替换容器的内容,我必须写这样的东西:

$('.container').html($('<div />').text('hello'));

我可以使用什么方法来指定最后的容器元素,以便我没有这么多括号?

1 个答案:

答案 0 :(得分:0)

使用它:

$('.container').text('hello');