如何获取特定html代码中的一段文字

如何获取特定html代码中的一段文字,第1张

window.onload = function(){

var doms  = document.querySelectorAll(".q")

for(var i=0i<doms.lengthi++){

doms[i].onclick = function(){

var text = this.previousSibling

alert(text.nodeValue)

}

}

console.log(document.getElementById("test"))

} <div>

abcabc:<a class="q">按钮1</a><input type="number"><br />

defdef:<a class="q">按钮2</a><input type="number"><br />

</div>

你需要先给a标签添加一个class,表示只有当点击到这类型的标签才会被触发事件,然后你需要通过previousSibling就能获取到前面的内容

jQuery可以通过text和html方法获取指定标签的文本内容或者html内容

<!DOCTYPE html>

<html>

<head>

<script src="js/jquery.min.js">

</script>

<script>

$(document).ready(function(){

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

alert("Text: " + $("#test").text())

})

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

alert("HTML: " + $("#test").html())

})

})

</script>

</head>

<body>

<p id="test">This is some <b>bold</b>text in a paragraph.</p>

<button id="btn1">Show Text</button>

<button id="btn2">Show HTML</button>

</body>

</html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7526154.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-06
下一篇 2023-04-06

发表评论

登录后才能评论

评论列表(0条)

保存