发布网友 发布时间:2022-04-22 09:55
共3个回答
热心网友 时间:2022-04-19 08:13
<div>
<button onclick="dosell(this)">确定</button>
</div>
<script>
function dosell(item){
var parentNode=item.parentNode;
alert(parentNode.tagName); //这里将会弹出DIV
}
</script>
如上,按钮上点击要加一个参数dosell(this)
热心网友 时间:2022-04-19 09:31
<!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>
热心网友 时间:2022-04-19 11:05
element.parentNode 返回元素的父节点。
element.nodeName 返回元素的名称
http://www.w3school.com.cn/jsref/dom_obj_all.asp
dosell()->dosell(this)