我正在尝试Safari(both mobile and desktop)
通过Javascript
.
这就是我的代码的样子。
(function safaristyles()
{
if (navigator.userAgent.match(/AppleWebKit/) && ! navigator.userAgent.match(/Chrome/)) {
var avt = document.getElementsByClassName("avatar");
avt.style.border = "0" + "px";
avt.style.padding = "0" + "px";
}
})(this);
正如我在 中看到的Webkit inspector
,这是我面临的错误。
类型问题 - 'undefined' 不是对象(评估 'avt.style.border = "0" + "px")
我是 JS 的初学者,所以请多多包涵。