मैं एक तत्व की इनलाइन शैली टैग मूल्य को बदलने की कोशिश कर रहा हूं। वर्तमान तत्व इस तरह दिखता है:
`<tr class="row-even" style="background: red none repeat scroll 0% 0%; position: relative; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" id="0000ph2009-06-10s1s02">`
और मैं उस सभी स्टाइल सामान को निकालना चाहता हूं ताकि यह इनलाइन स्टाइल के बजाय इसे क्लास द्वारा स्टाइल किया जाए। मैंने एलिमेंट हटाने की कोशिश की है। स्टाईल; और तत्व.स्टाइल = अशक्त; और तत्व.स्टाइल = ""; कोई फायदा नहीं। मेरा वर्तमान कोड इन विवरणों को तोड़ता है। संपूर्ण फ़ंक्शन ऐसा दिखता है:
फ़ंक्शन अनसिथेटलाइट (इंडेक्स) {
if(index < 10)
index = "000" + (index);
else if (index < 100)
index = "000" + (index);
else if(index < 1000)
index = "0" + (index);
if(index >= 1000)
index = index;
var mainElm = document.getElementById('active_playlist');
var elmIndex = "";
for(var currElm = mainElm.firstChild; currElm !== null; currElm = currElm.nextSibling){
if(currElm.nodeType === 1){
var elementId = currElm.getAttribute("id");
if(elementId.match(/\b\d{4}/)){
elmIndex = elementId.substr(0,4);
if(elmIndex == index){
var that = currElm;
//that.style.background = position: relative;
}
}
}
}
clearInterval(highlight);
alert("cleared Interval");
that.style.background = null;
alert("unSet highlight called");
}
ClearInterval काम करता है, लेकिन चेतावनी कभी भी फायर नहीं करती है और पृष्ठभूमि समान रहती है। किसी को कोई समस्या देखते हैं? अग्रिम में धन्यवाद...
function unSetHighlight(index){
alert(index);
if(index < 10)
index = "000" + (index);
else if (index < 100)
index = "000" + (index);
else if(index < 1000)
index = "0" + (index);
if(index >= 1000)
index = index;
var mainElm = document.getElementById('active_playlist');
var elmIndex = "";
for(var currElm = mainElm.firstChild; currElm !== null; currElm = currElm.nextSibling){
if(currElm.nodeType === 1){
var elementId = currElm.getAttribute("id");
if(elementId.match(/\b\d{4}/)){
elmIndex = elementId.substr(0,4);
alert("elmIndex = " + elmIndex + "index = " + index);
if(elmIndex === index){
var that = currElm;
alert("match found");
}
}
}
}
clearInterval(highlight);
alert("cleared Interval");
that.removeAttribute("style");
//that.style.position = "relative";
//reColor();
alert("unSet highlight called");
}