如何使用javascript动态创建<div horizontal layout></div>
元素?
我可以用document.createElement(“div”)创建div元素;但是如何为其添加水平布局?
答案 0 :(得分:3)
<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
How to add or update an attribute to an HTML element using JavaScript?
等等。