我有这个div
<div class="RestauranstSection"> <label> Restaurant: </label> <input type="text"/> <input type="button" value="Search"/> <ul> <?PHP while ($row = $restaurants->fetch()) { ?> <li id="<?PHP echo $row['ID']; ?>"> <?PHP echo $row['name']; ?> </li> <?PHP } ?> </ul> </div>
我想要按任何li元素来提醒它的文本,
$(".RestauranstSection").on('click','li',function (){});
怎么样?
解决方法
$(".RestauranstSection").on('click',function (){ alert($(this).text()); });