0

我有 2 个带有 ID="situps" 和 ID="pushups" 的文本框它们在 Div 中的原因是因为我需要它们仅在平板电脑上使用时才使用数字键盘。我想知道是否有办法在 c# 中检索该 ID。这是文本框的代码:

<div style="display:none">
    <asp:TextBox ID="situps" runat="server" Height="16px"   
    ontextchanged="TextBox1_TextChanged" Width="108px"></asp:TextBox>
</div>
<input onblur="document.getElementById('<%=Sits.ClientID %>').value = this.value" type="tel" style="width: 86px" />

<div style="display:none">
        <asp:TextBox ID="pushups" runat="server" Height="16px" 
        ontextchanged="TextBox1_TextChanged" Width="108px"></asp:TextBox>
</div> 
<br />
    Push-ups <input onblur="document.getElementById('<%=Push.ClientID %>').value = 
    this.value" type="tel" style="width: 86px" />
<br />

我已经弄清楚如何在表单视图中检索标签,但无法弄清楚如何从表单视图之外的 texbox 获取 DIV ID。

谢谢!!!

4

1 回答 1

0

我想我犯了一个简单的错误。我一定有重复的名字仰卧起坐和俯卧撑。我现在可以抢到身份证了!!

于 2012-08-28T16:36:14.220 回答