如何使用jQuery获取div内容的值?

要在 jQuery 中获取 div 内容的值,请使用text()方法。该text( )方法获取所有匹配元素的组合文本内容。此方法适用于 XML 和 XHTML 文档。

示例

您可以尝试运行以下代码以使用 jQuery 获取 div 内容的值:

<!DOCTYPE html>

<html>

<head>

<script xx_src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>

<script>

$(document).ready(function() {

   $("#button1").click(function() {

     var res = $('#demo').text();

     alert(res);

   });

});

</script>

</head>

<body>

<div id="demo"> This is <b>demo</b> text.

</div>

<button id="button1">Get</button>

</body>

</html>

以上是 如何使用jQuery获取div内容的值? 的全部内容, 来源链接: utcz.com/z/335628.html

回到顶部