gpt4 book ai didi

javascript - 使用javascript获取一个asp.net Label控件

转载 作者:行者123 更新时间:2023-11-30 13:24:58 25 4
gpt4 key购买 nike

我在表单 View 中有一个标签控件,它显示几个文本框的总和。我无法在 Java 脚本中获取标签 tb_TA_2_6 的 ID。

我试过了

<script type ="text/jscript" language= "javascript" >
function autosum(t1, t2) {
var sum;
var a = document.getElementById('tb_TA_2_6'); // does not work
var b = FindControl(FormView1, t2); // does not work
var c = <%= 'tb_TA_2_6'.ClientID%>; // unknown component tb_TA_2_6
var c = <%= tb_TA_2_6.ClientID%>; //The name 'tb_TA_2_6' does not exist in the current context

var num2 = $(t2);
if (num2.textContent)
sum = num2.textContent;
else if (num2.innerText)
sum = num2.innerText;
else
sum = num2.innerHTML;
}

function FindControl(parentControl, strId)
{
var returnObject;
for(i=0;i < parentControl.elements.length; i++)
{
if(parentControl.elements[i].id.indexOf(strId) >= 0)
returnObject = parentControl.elements[i];
else if(parentControl.elements[i].hasChildNodes())
returnObject = FindControl(parentControl.elements[i],strId);

if(returnObject != null)
{ //if object is found return
return returnObject;
}
}
return returnObject;
}
</script>

但这些似乎都不起作用,有没有人知道 ID 为 tb_TA_2_6 的标签发生了什么。

表单 View 看起来像

<asp:FormView ID="FormView1" runat="server" ClientIDMode="Static">
<ItemTemplate>
<asp:Label ID="labelID" runat="server" Text='<%#Bind("ID") %>' Visible="false"></asp:Label>
<table id="table1">
<tr>
<td>
<span > Textbox1 </span>
</td>
<td>
<asp:TextBox ID="tb_TA_2_4" onBlur="Javascript:autosum(this, '<%= tb_TA_2_6.ClientID%>');" runat="server" Text='<%#Bind("question6i","{0:$#,#0.00}") %>'></asp:TextBox>
</td>
</tr>
<tr>
<td>
<span>6. (iii) Total Value </span>
</td>
<td>
<asp:Label ID="tb_TA_2_6" runat="server" ReadOnly="true" Text='<%#Bind("question6iii", "{0:$#,#0.00}") %>' OnPreRender="FormView1_PreRender" ></asp:Label>
</td>
</tr>
</table>
</ItemTemplate>

呈现的html如下,我删除了问题中的样式信息。

<tr>

<td style="vertical-align: middle; width: 697px; height: 15px; border-style: solid;

border-color: #6699cc; border-width: 1px; border-top: 1px solid #fff;">

<span style="font-family: MS Sans Serif; font-size: 14px; color: #000000">6. (iii) Total

Value of All Benefits For Payment of Utilities </span>

</td>

<td class="alignright" style="vertical-align: top; width: 157px; height: 15px; border-style: solid;

border-color: #6699cc; border-width: 1px; border-left: 1px solid #fff; border-top: 1px solid #fff;">

<span id="ctl00_cph_Main_FormView1_tb_TA_2_6" ReadOnly="true" style="font-size:12pt;">$60.00</span>

</td>

</tr>

最佳答案

Label控件呈现为 span在 HTML 中。

要访问它,您需要获取它的 ClientID .

您可以将 javascript 更改为:

var a = document.getElementById('<%= tb_TA_2_6.ClientID %>');

你的 var c例子有 Label控件名称用引号引起来,这就是它失败的原因。

您还可以设置 ClientIDModestatic如果您希望控件完全按照您指定的方式呈现它们的 ID,则为您的页面。然后你原来的getElementById将按预期工作而无需获得渲染 ClientID .

参见 MSDN对于ClientIDMode信息。

编辑:如果您的控件是容器模板的一部分,您需要通过获取容器控件然后执行 FindControl 以不同方式访问控件。从它。

var a = document.getElementById('<%= FormView1.FindControl("tb_TA_2_6").ClientID %>');

关于javascript - 使用javascript获取一个asp.net Label控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8822398/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com