使用jquery获取列表数据

时间:2015-11-02 08:31:49

标签: javascript jquery html

<html>
<head>
    <title>List Manipulation</title>

      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <script>
        $(document).ready(function(){
            $("ul li").click(function(){
               var s;// in this variable i want "list item 1"
               window.alert(s);
            });
        });
    </script>
</head>
<body>
    <ul>
    <li>list item 1</li>
    </ul>
</body>
</html>

我写了一个简单的html代码,它有无序列表。当我单击此列表中的元素时,我想要单击列表元素的内容。我在代码中对它进行了评论。 我试过了

var s = this.text;//giving undefined value

var s = this.value ;// giving 0

1 个答案:

答案 0 :(得分:0)

使用text()

var s = $(this).text();