Як додати клас для div
?
var new_row = document.createElement('div');
Як додати клас для div
?
var new_row = document.createElement('div');
Відповіді:
new_row.className = "aClassName";
Ось додаткова інформація про MDN: className
new_row.className = "aClassName1 aClassName2";
це лише атрибут, ви можете призначити будь-який вподобаний вам рядок, навіть якщо це робить недійсний html
new_row.classList.add('aClassName');
оскільки ви можете потім додати кілька імен класів
classList
не підтримується в IE9 або нижче.
Використовуйте .classList.add()
метод:
const element = document.querySelector('div.foo');
element.classList.add('bar');
console.log(element.className);
<div class="foo"></div>
Цей метод кращий, ніж перезапис className
властивості, оскільки він не видаляє інші класи та не додає клас, якщо у елемента вже є.
Ви також можете перемикати або видаляти класи за допомогою element.classList
(див . Документацію MDN ).
Тут працює вихідний код з використанням функціонального підходу.
<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>
Існує також DOM спосіб зробити це в 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");
Це спрацює ;-)
Також варто поглянути на:
var el = document.getElementById('hello');
if(el) {
el.className += el.className ? ' someClass' : 'someClass';
}
Якщо ви хочете створити нове поле введення за допомогою file
типу:
// 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"
Вихід буде: <input type="file" class="w-95 mb-1">
Якщо ви хочете створити вкладений тег за допомогою JavaScript, найпростіший спосіб innerHtml
:
var tag = document.createElement("li");
tag.innerHTML = '<span class="toggle">Jan</span>';
Вихід буде:
<li>
<span class="toggle">Jan</span>
</li>
Примітка:
classList
властивість не підтримується в Internet Explorer 9 . Наступний код буде працювати у всіх браузерах:
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')
Джерело: як js додати клас