使用选择器:enabled时,Microsoft Edge的头部包含链接标记。 在Chrome / Firefox / IE中然后在ME中运行代码段,然后比较结果。 这是一个已知的错误吗?
$(":enabled").each(function () {
alert(this.tagName);
});
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>enabled demo</title>
<link rel="shortcut icon" href="https://api.jquery.com/jquery-wp-content/themes/api.jquery.com/i/favicon.ico">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<form>
<input id="input1" disabled="disabled">
<input id="input2">
</form>
</body>
</html>