C#如何获取 html标签里的 文本
发布网友
发布时间:2022-04-22 07:55
我来回答
共2个回答
热心网友
时间:2022-04-22 09:24
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());//获取除开input标签的文本
});
});
</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>
热心网友
时间:2022-04-22 10:42
<b id = "obj"></b>
<script>
document.getElementById("obj").innerText //这就获得 里面的值啦
</script>