41

我想从 元素<p>内部 获取文本值。<li>

html

<ul>
  <li onclick="myfunction()">
    <span></span>
    <p>This Text</p>
  </li>
</ul>

javascript

function myfunction() {
  var TextInsideLi = [the result of this has to be the text inside the paragraph"];
}

这该怎么做?

4

9 回答 9

53

或者,您也可以将 li 元素本身传递给 myfunction 函数,如下所示:

function myfunction(ctrl) {
  var TextInsideLi = ctrl.getElementsByTagName('p')[0].innerHTML;
}

在您的 HTML 中,<li onclick="myfunction(this)">

于 2012-07-24T15:27:47.897 回答
15

你使用 jQuery 吗?一个不错的选择是

text = $('p').text();
于 2012-07-24T15:17:18.870 回答
10
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Where to JavaScript</title>
    <!-- JavaScript in head tag-->
    <script>
        function changeHtmlContent() {
            var content = document.getElementById('content').textContent;
            alert(content);
        }
    </script>
</head>
<body>
    <h4 id="content">Welcome to JavaScript!</h4>
    <button onclick="changeHtmlContent()">Change the content</button>
</body>

在这里,我们可以通过使用获取文本内容h4

document.getElementById('content').textContent
于 2018-05-12T12:37:02.277 回答
7

试试这个:

<li onclick="myfunction(this)">

function myfunction(li) {
    var TextInsideLi = li.getElementsByTagName('p')[0].innerHTML;
}

现场演示

于 2012-07-24T15:18:30.200 回答
6

将您的 html 更改为以下内容:

<ul>
    <li onclick="myfunction()">
        <span></span>
        <p id="myParagraph">This Text</p>
    </li>
</ul>

那么您可以使用以下功能获取段落的内容:

function getContent() {
    return document.getElementById("myParagraph").innerHTML;
}
于 2012-07-24T15:21:25.460 回答
1

使用 jQuery:

$("li").find("p").html()

应该管用。

于 2012-07-24T15:17:23.640 回答
1

HTML

<ul>
  <li onclick="myfunction(this)">
    <span></span>
    <p>This Text</p>
  </li>
</ul>​

JavaScript

function myfunction(foo) {
    var elem = foo.getElementsByTagName('p');
    var TextInsideLi = elem[0].innerHTML;
}​
于 2012-07-24T15:24:51.827 回答
1

如果你使用例如。“id”你可以这样做:

   (function() {
    let x = document.getElementById("idName");
    let y = document.getElementById("liName");
    
    y.addEventListener('click', function(e) {
        y.appendChild(x);
    });

  
})();
<html lang="en">

<head>
    <title></title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>

<body>
    <p id="idName">TEXT</p>
    <ul>
        <li id="liName">

        </li>
    </ul>
</body>
<script src="js/scripts/script.js"></script>

</html>

于 2017-06-29T19:28:05.387 回答
0

Id属性添加到P标签中,其值类似于文本或其他内容:

function gettext() {
    var amount = document.getElementById('text').value;
}
于 2020-11-02T14:45:49.340 回答