这是功能:
function lastmenuborder() {
var articleparent = document.getElementById('article').parentNode;
var articlestyle = window.getComputedStyle(articleparent,null).getPropertyValue('borderRadius');
alert (articlestyle);
}
我没有得到任何价值,但父节点的css是:
div#mainbody div.placeholder {
border-radius: 3px;
}
我需要更改什么才能返回“3px”?所有人都非常感谢;我仍然是JavaScript的新手.
最佳答案
对于getPropertyValue(),您使用连字符而不是camelCase.
原文链接:https://www.f2er.com/css/427312.html这适用于Chrome …
.getPropertyValue('border-radius');
但Firefox似乎需要使用这种语法的特定角落……
.getPropertyValue('border-top-left-radius');