如何使用JQuery将html元素作为存在体中的第一个元素追加?

时间:2022-08-27 12:12:06

I used $('body').append('MY HTML elements') but this code add these elements to the end of the body, i want to add as a first element inside the body.

我使用了$('body')。append('我的HTML元素')但是这段代码将这些元素添加到正文的末尾,我希望将其添加为正文中的第一个元素。

How to do that using JQuery?

如何使用JQuery?

1 个解决方案

#1


You use the prepend function:

您使用prepend函数:

$('body').prepend('My HTML elements');

#1


You use the prepend function:

您使用prepend函数:

$('body').prepend('My HTML elements');