javascript – jquery获取文本>

前端之家收集整理的这篇文章主要介绍了javascript – jquery获取文本>前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个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());
});
原文链接:https://www.f2er.com/jquery/152116.html

猜你在找的jQuery相关文章