请在ie下运行一下代码,原来meta也行的~~

1
2
3
4
5
6
7
8
9
10
11
<html>
<head>
<meta name="Description" content="xxx" />
</head>
	<body>
		<input id="description" name="description" />
	</body>
	<script>
		alert(document.getElementById('description').tagName);
	</script>
</html>
Copy Code | Run Code