Can jquery add elements to the page?

WBOY
Release: 2022-06-09 16:47:13
Original
1678 people have browsed it

jquery can add elements to the page. Adding method: 1. Use "Element Object.append("Insert Content")" to add elements at the end of the element; 2. Use "Element Object.prepend("Insert Content")" to add elements at the beginning of the element; 3. Use "Element object.after("Insert content")" adds elements after the selected element; 4. Use "Element object.before("Insert content")" to add elements after the selected element.

Can jquery add elements to the page?

The operating environment of this tutorial: windows10 system, jquery3.4.1 version, Dell G3 computer.

Can jquery add elements to the page

Can jquery add elements to the page

  • append() - Insert content at the end of the selected element

$(selector).append(content,function(index,html))
Copy after login

The example is as follows:





12



这是一个段落。

这是另一个段落

  1. 列表项 1
  2. 列表项 2
  3. 列表项 3
Copy after login

Output result:

Can jquery add elements to the page?

  • prepend() - Insert content at the beginning of the selected element

Examples are as follows:

$(document).ready(function(){
$("#btn1").click(function(){
$("p").prepend(" 插入文本.");
});
$("#btn2").click(function(){
$("ol").prepend("
  • 插入项
  • "); }); });
    Copy after login

    Output result:

    Can jquery add elements to the page?

    • after() - Insert content after the selected element

    $(document).ready(function(){
    $("#btn1").click(function(){
    $("p").after(" 插入文本.");
    });
    $("#btn2").click(function(){
    $("ol").after("
  • 插入项
  • "); }); });
    Copy after login

    Output result:

    Can jquery add elements to the page?

    • ##before() - Insert content before the selected element

    • $(document).ready(function(){
      $("#btn1").click(function(){
      $("p").before(" 插入文本.");
      });
      $("#btn2").click(function(){
      $("ol").before("
    • 插入项
    • "); }); });
      Copy after login
      Output result:

      Can jquery add elements to the page?

      Video tutorial recommendation:

      jQuery video tutorial

      The above is the detailed content of Can jquery add elements to the page?. For more information, please follow other related articles on the PHP Chinese website!

    Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!