2023年9月17日_html

2023年9月17日_html_02

HTML

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>2023年9月17日</title>
	</head>
	<body>
		数据区:<span id="sp" title="helloworld">您好,欢迎你使用JavaScript</span>
		<button id="bs" onclick="abc()">点我</button>
		<p>
			在使用:document.getElmentById();括号中需要使用双引号,引号里边只写id的名字即可,不用写符号。
		</p>
	</body>
	<script>
		function abc(){
			var abc = document.getElementById("sp");
			console.log(abc)
			var abc_te = abc.textContent;
			alert(abc_te)
		}
		
	</script>
</html>