javascript [DOM]创建和设置元素

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript [DOM]创建和设置元素相关的知识,希望对你有一定的参考价值。

// Create a div with a card class
const card = document.createElement("div");
card.setAttribute("class", "card");

// Create an h1 and set the text content to the film's title
const h1 = document.createElement("h1");
h1.textContent = movie.title;

// Create a p and set the text content to the film's description.
const p = document.createElement("p");
\!h movie.description = movie.description.substring(0, 300); // Limit to 300 chars
p.textContent = `${movie.description}...`; // Ends with ...

以上是关于javascript [DOM]创建和设置元素的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript-DOM

Javascript-- jQuery DOM篇

javascript基础加固6—-DOM

JavaScript DOM实战:创建和克隆元素

DOM元素和javascript读取它们的顺序[重复]

php 创建 DOM 元素并使用 ajax 发送