如何在div中选择asp标签列表?
<div id="myDiv"> <asp:Label ID="myLabel".../> <asp:Label ID="myLabel".../> </div>
此Jquery代码不起作用。
$("#myDiv label").each(function(){ alert("show this msg");});
任何帮助将不胜感激。
答案 0 :(得分:1)
试试这个:
$("#myDiv span[id*=myLabel]").each(function(){ alert("show this msg");});
因为,asp:Label
在HTML中呈现为span
。
另外,请为myLabel1
,myLabel2
等asp标签提供一些独特的 ID 。
答案 1 :(得分:0)
试试这个:#mydiv
内的所有标签。使用^ selector
检查起始字符串
$("#myDiv span[id^=myLabel]").each(function(){ alert("show this msg");});