Jak dodać klasę dla div
?
var new_row = document.createElement('div');
Jak dodać klasę dla div
?
var new_row = document.createElement('div');
Odpowiedzi:
new_row.className = "aClassName";
Oto więcej informacji na temat MDN: className
new_row.className = "aClassName1 aClassName2";
jest tylko atrybutem, możesz przypisać dowolny ciąg, który ci się podoba, nawet jeśli powoduje nieprawidłowy HTML
new_row.classList.add('aClassName');
Użyj .classList.add()
metody:
const element = document.querySelector('div.foo');
element.classList.add('bar');
console.log(element.className);
<div class="foo"></div>
Ta metoda jest lepsza niż nadpisywanie className
właściwości, ponieważ nie usuwa innych klas i nie dodaje klasy, jeśli element już ją ma.
Możesz także przełączać lub usuwać klasy za pomocą element.classList
(patrz dokumentacja MDN ).
Oto działający kod źródłowy wykorzystujący podejście funkcyjne.
<html>
<head>
<style>
.news{padding:10px; margin-top:2px;background-color:red;color:#fff;}
</style>
</head>
<body>
<div id="dd"></div>
<script>
(function(){
var countup = this;
var newNode = document.createElement('div');
newNode.className = 'textNode news content';
newNode.innerHTML = 'this created div contains a class while created!!!';
document.getElementById('dd').appendChild(newNode);
})();
</script>
</body>
</html>
Istnieje również sposób DOM, aby to zrobić w JavaScript:
// Create a div and set class
var new_row = document.createElement("div");
new_row.setAttribute("class", "aClassName");
// Add some text
new_row.appendChild(document.createTextNode("Some text"));
// Add it to the document body
document.body.appendChild(new_row);
var newItem = document.createElement('div');
newItem.style = ('background-color:red');
newItem.className = ('new_class');
newItem.innerHTML = ('<img src="./profitly_files/TimCover1_bigger.jpg" width=50 height=50> some long text with ticker $DDSSD');
var list = document.getElementById('x-auto-1');
list.insertBefore(newItem, list.childNodes[0]);
var new_row = document.createElement('div');
new_row.setAttribute("class", "YOUR_CLASS");
To zadziała ;-)
Warto również spojrzeć na:
var el = document.getElementById('hello');
if(el) {
el.className += el.className ? ' someClass' : 'someClass';
}
Jeśli chcesz utworzyć nowe pole wejściowe, na przykład file
wpisz:
// Create a new Input with type file and id='file-input'
var newFileInput = document.createElement('input');
// The new input file will have type 'file'
newFileInput.type = "file";
// The new input file will have class="w-95 mb-1" (width - 95%, margin-bottom: .25rem)
newFileInput.className = "w-95 mb-1"
Dane wyjściowe będą: <input type="file" class="w-95 mb-1">
Jeśli chcesz utworzyć zagnieżdżony tag za pomocą JavaScript, najprostszym sposobem jest innerHtml
:
var tag = document.createElement("li");
tag.innerHTML = '<span class="toggle">Jan</span>';
Dane wyjściowe będą:
<li>
<span class="toggle">Jan</span>
</li>
Uwaga:
classList
Właściwość nie jest obsługiwana w programie Internet Explorer 9 . Poniższy kod będzie działał we wszystkich przeglądarkach:
function addClass(id,classname) {
var element, name, arr;
element = document.getElementById(id);
arr = element.className.split(" ");
if (arr.indexOf(classname) == -1) { // check if class is already added
element.className += " " + classname;
}
}
addClass('div1','show')
Źródło: jak js dodać klasę
To też zadziała.
$(document.createElement('div')).addClass("form-group")