尝试控制台记录此功能以从<a>元素检索属性节点

问题描述

我正在尝试控制台记录此代码,但似乎无法使其正常工作。

这是我的Javscript函数:

function myFunction() {
  var elmnt = document.getElementById("myAnchor");
  var attr = elmnt.getAttributeNode("target").value;
  document.getElementById("demo").innerHTML = attr;
}

这是HTML:

<a id="myAnchor" href="dom_obj_attributes.asp" target="_blank">Attr object</a>.

<p>Click the button to display the value of the target attribute node of the link above.</p>

<p id="demo"></p>

返回值应为:_blank

解决方法

答案是:

console.log(myAnchor.getAttributeNode(“ target”));

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...