gpt4 book ai didi

javascript - 使用javascript动态创建div水平布局元素

转载 作者:行者123 更新时间:2023-11-30 12:29:35 25 4
gpt4 key购买 nike

如何创建 <div horizontal layout></div>动态使用 javascript 元素?

我可以用 document.createElement("div"); 创建 div 元素但是如何向其中添加水平布局?

最佳答案

<html>
<head>

<script type="text/javascript">
window.onload = function() {

newdiv = document.createElement("div");
newdiv.setAttribute('horizontal', '');
newdiv.setAttribute('layout', '');
document.body.appendChild(newdiv);
// You can insertBefore() too.

// Or... document.body.innerHTML = document.body.innerHTML + '<div horizontal layout></div>';

}
</script>
</head>
<body>
</body>
</html>

一些有用的链接:

http://www.w3schools.com/jsref/met_document_createelement.asp

Adding elements to the DOM

Searching elements in DOM

How to add or update an attribute to an HTML element using JavaScript?

等等。

关于javascript - 使用javascript动态创建div水平布局元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28179689/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com