admin管理员组文章数量:1344223
I have a label as shown
<label id="label1"></label>
I am trying to set the value in it using
document.getElementById('label1').text = "ddd";
And i also i tried using Prototype as
$('label1').text = date1;
But still its not working
I have a label as shown
<label id="label1"></label>
I am trying to set the value in it using
document.getElementById('label1').text = "ddd";
And i also i tried using Prototype as
$('label1').text = date1;
But still its not working
Share Improve this question edited Dec 28, 2011 at 22:33 Tom van der Woerdt 30k7 gold badges74 silver badges105 bronze badges asked May 25, 2011 at 9:47 user663724user663724 05 Answers
Reset to default 5document.getElementById("label1").innerText = "foobar"
or alternatively
document.getElementById("label1").innerHTML = "<b>fatfoo</b>";
Use the following
$('#label1').text(date1);
text is a method here.
Use the innerText or innerHTML property:
document.getElementById("label1").innerText="ddd";
Try .innerHTML, innerText, .textContent, .nodeValue
I have only seen .text in selects
(I need to stop menting and answer instead...)
A label element is supposed to enclose a form control, e.g.
<label id="label1" for="firstName">First name:
<input type="text" name="firstName" id="firstName"></label>
If that is how you are using it, then you don't want to replace it's innerHTML, innerText or textContent as doing so will pletely replace the content of the label (removing any elements within it). If you aren't using the label this way, you should be using some other element, probably a span.
While innerHTML is widely supported, it's only been standardised in HTML5, which is still a draft. However, you can usually assume support and setting it is pretty consistent across browsers. Getting the property has foibles and isn't very consistent if it's anything other than trivial markup (e.g. text and simple inline elements).
The innerText property is a Microsoft proprietary property that is supported by IE and some other browsers, it definitely should not be used without feature testing. Similarly, the W3C DOM 3 textContent property is not widely supported, but is generally supported by those browsers that don't support innerText (some support both).
It's pretty easy to do a feature test and select which one to use, such as:
if (typeof element.textContent == 'string') {
// use textContent property
} else if (typeof element.innerText == 'string') {
// use innerText property
}
where element is a reference to a DOM element node.
It's probably best to wrap the text you want to replace in a span element and replace the content of that, either using innerHTML or, if it contains a single text node, its firstChild.data
.
本文标签: javascriptUnable to set the value into Label dynamicallyStack Overflow
版权声明:本文标题:javascript - Unable to set the value into Label dynamically - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743695791a2523480.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论