本文介绍了如何在javascript中清除标签文本或使标签不可见的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我的标签定义如下:
< asp:Label ID =lblWarningrunat = serverForeColor =RedVisible =FalseHeight =19pxWidth =276px>
我试图清除标签文字像这样:
hi All,
I have a label defined like this:
<asp:Label ID="lblWarning" runat="server" ForeColor="Red" Visible="False" Height="19px" Width="276px">
I tried to clear the text of a label like this :
function ChangeProperty() {
var b = document.getElementById('<%=lblWarning.ClientID%>');
if (b!=null)
{
b.innerText = "";
}
}
这不起作用。请帮忙。
谢谢。
This is not working.Please help.
Thanks.
推荐答案
<asp:label id="lblWarning" runat="server" forecolor="Red" height="19px" width="276px" xmlns:asp="#unknown"></asp:label>
function ChangeProperty() {
var b = document.getElementById('<%=lblWarning.ClientID%>');
if (b!=null)
{
if(b.style.display == "none")
{
b.style.display = "";
}
else
{
b.style.display = "none";
}
}
}
这篇关于如何在javascript中清除标签文本或使标签不可见的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!