如何在 div 中选择 asp 标签列表?
<div id="myDiv"> <asp:Label ID="myLabel".../> <asp:Label ID="myLabel".../> </div>
此 Jquery 代码不起作用。
$("#myDiv label").each(function(){ alert("show this msg");});
任何帮助将不胜感激。
尝试这个:
$("#myDiv span[id*=myLabel]").each(function(){ alert("show this msg");});
因为, a以 HTML 格式asp:Label
呈现span
。
此外,请为asp 标签(如、等)提供一些唯一ID 。myLabel1
myLabel2
试试这个:
你可以遍历 .use 里面的所有标签#mydiv
来^ selector
检查起始字符串
$("#myDiv span[id^=myLabel]").each(function(){ alert("show this msg");});