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
これを試してください: u は、開始文字列をチェックする .use
内のすべてのラベルを反復処理できます#mydiv
^ selector
$("#myDiv span[id^=myLabel]").each(function(){ alert("show this msg");});