0

所以我想遍历一个内容,假设这个内容有 4 个文本框

<asp:Content runat="server" ID="FeaturedContent" ClientIDMode="Static" ContentPlaceHolderID="MainContent" class="Tester">
            Property ID:
            <asp:TextBox ID="PersonIDLabel1" runat="server" class="PersonalIDLabel1" onBlur="textBlur(event)" />
            <br />
            LastName:
            <asp:TextBox ID="LastNameTextBox" runat="server" ClientIDMode="Static" onBlur="textBlur(event);" />
            <br />
            FirstName:
            <asp:TextBox ID="FirstNameTextBox" runat="server"  ClientIDMode="Static" onBlur="textBlur(event);"/>
            <br />
            Appraisal Comapny:
            <asp:TextBox ID="HireDateTextBox" runat="server"  ClientIDMode="Static" onBlur="textBlur(event);"/>
            <br />
            Appraisal value:
            <asp:TextBox ID="EnrollmentTextBox" runat="server"  ClientIDMode="Static" onBlur="textBlur(event);"/>
            <br />

我想使用 jquery 来获取文本框的所有值,这是我的代码:

$("#FeaturedContent").each(function (index) {
            console.log($(this).val());  
        }); 

我也试过

$(".Tester").each(function (index) {
            console.log($(this).val()); 

        });

$("#MainContent").each(function (index) {
           console.log($(this).val()); 

        });

$("#Content").each(function (index) {
           console.log($(this).val()); 

        });

$("#TextBox").each(function (index) {
           console.log($(this).val()); 

        });

有任何想法吗?我什至可以获得 ASP 标签吗?

4

3 回答 3

2

IIRCasp:Content服务器控件不会为自己生成 html。只需将此控件内部的内容包装在 div 中:

<asp:Content runat="server" ID="FeaturedContent" ClientIDMode="Static" ContentPlaceHolderID="MainContent" class="Tester">
<div id="wrapper">
  Property ID:
  <asp:TextBox ID="PersonIDLabel1" runat="server" class="PersonalIDLabel1"  onBlur="textBlur(event)" />
  <br />
  ...
</div>
</asp:Content> 

并做:

$("#wrapper input").each(function (index) {
  console.log($(this).val());  
}); 
于 2013-06-14T19:11:46.930 回答
0

尝试这个

 $("#<%=FeaturedContent.ClientID%> input").each(function () {
        console.log($(this).val());  
    }); 
于 2013-06-14T19:04:25.257 回答
0

也许你可以在你的 javascript 函数中使用类似的东西:

var myAnswers[] = $('.class').Content().ToArray();
于 2013-06-14T19:04:51.237 回答