0

如何在 div 中选择 asp 标签列表?

<div id="myDiv"> <asp:Label ID="myLabel".../> <asp:Label ID="myLabel".../> </div>

此 Jquery 代码不起作用。

$("#myDiv label").each(function(){ alert("show this msg");});

任何帮助将不胜感激。

4

2 回答 2

1

尝试这个:

$("#myDiv span[id*=myLabel]").each(function(){ alert("show this msg");});

因为, a以 HTML 格式asp:Label呈现span

此外,请为asp 标签(如、等)提供一些唯一ID 。myLabel1myLabel2

于 2013-10-07T09:46:19.553 回答
0

试试这个:
你可以遍历 .use 里面的所有标签#mydiv^ selector检查起始字符串

$("#myDiv span[id^=myLabel]").each(function(){ alert("show this msg");});
于 2013-10-07T09:49:29.363 回答