मैं किस तरह के लिए एक वर्ग जोड़ सकता हूँ 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.add()
विधि का प्रयोग करें :
const element = document.querySelector('div.foo');
element.classList.add('bar');
console.log(element.className);
<div class="foo"></div>
यह विधि className
संपत्ति को अधिलेखित करने से बेहतर है , क्योंकि यह अन्य वर्गों को नहीं हटाता है और वर्ग को जोड़ता नहीं है यदि तत्व पहले से ही है।
आप element.classList
( एमडीएन प्रलेखन देखें ) का उपयोग करके कक्षाओं को टॉगल या हटा सकते हैं ।
यहां फ़ंक्शन अप्रोच का उपयोग करके सोर्स कोड काम कर रहा है।
<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 तरीका भी है:
// 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">
यदि आप जावास्क्रिप्ट का उपयोग करके नेस्टेड टैग बनाना चाहते हैं, तो सबसे सरल तरीका innerHtml
निम्न है:
var tag = document.createElement("li");
tag.innerHTML = '<span class="toggle">Jan</span>';
उत्पादन होगा:
<li>
<span class="toggle">Jan</span>
</li>
नोट:
classList
संपत्ति इंटरनेट एक्सप्लोरर 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')