js函数怎么传入数组元素作为参数
通过getAttribute获取了a标签数组元素节点,但是没办法把节点作为参数输入函数。
1回答
-
qq_呆瓜_fkoIZ8
你是什么意思呢?如下可是你想要的?<div id="box" name="title">
这是一个段落
</div>
<script type="text/javascript">
var oBox=document.getElementById("box");
var oTitle=oBox.getAttribute("name");
getAttr(oTitle);
function getAttr(oTitle){
alert(oTitle);
}
</script>