js或者jquery怎么获得父标签里的某个属性
<pgoodsid="123"><buttonclass="action-reply-commit"onclick="doComment();">提交</button><...
<p goodsid="123">
<button class="action-reply-commit" onclick="doComment();">提交</button>
</p>
怎么在函数doComment里调用goodsid的值 展开
<button class="action-reply-commit" onclick="doComment();">提交</button>
</p>
怎么在函数doComment里调用goodsid的值 展开
3个回答
展开全部
展开全部
<button class="action-reply-commit" onclick="doComment(this);">提交</button>
---------------
var doComment = function(btn){
var p = btn.parentElement;
alert(p.goodsid);
}
---------------
var doComment = function(btn){
var p = btn.parentElement;
alert(p.goodsid);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
jquery:
function doComment(){
var id = $(".action-reply-commit").parent().attr("goodsid");
alert(id);
}
js:
function doComment(){
var id = document.getElementsByClassName("action-reply-commit")[0].parentNode.getAttribute
("goodsid");
alert(id);
}
function doComment(){
var id = $(".action-reply-commit").parent().attr("goodsid");
alert(id);
}
js:
function doComment(){
var id = document.getElementsByClassName("action-reply-commit")[0].parentNode.getAttribute
("goodsid");
alert(id);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询