javascript 获得当前点击结点的父亲结点
javascriptfunctiondosell(item){varparentNode=item.parentNode;//这样好似不能获得<button>结点的父结点...
javascript
function dosell(item){
var parentNode=item.parentNode; //这样好似不能获得 <button>结点的父结点,
}
thml:
<button onclick="dosell()">确定</button>
请问正确的做法是什么????谢谢 展开
function dosell(item){
var parentNode=item.parentNode; //这样好似不能获得 <button>结点的父结点,
}
thml:
<button onclick="dosell()">确定</button>
请问正确的做法是什么????谢谢 展开
展开全部
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script>
function dosell(self)
{
alert(self.parentNode.className);
}
</script>
</head>
<body>
<div class="test">
<button onclick="dosell(this)">确定</button>
</div>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
element.parentNode 返回元素的父节点。
element.nodeName 返回元素的名称
http://www.w3school.com.cn/jsref/dom_obj_all.asp
dosell()->dosell(this)
element.nodeName 返回元素的名称
http://www.w3school.com.cn/jsref/dom_obj_all.asp
dosell()->dosell(this)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询