如何在JavaScript中将CSS内容属性获取为字符串

时间:2019-01-11 13:59:30

标签: javascript css

说我有以下CSS:

content : "\F069";

我尝试了

window.getComputedStyle(document.getElementById("id"), ":after").getPropertyValue("content").toString();

它给了我符号““”“

如何获取结果字符串“ \ F069”?

1 个答案:

答案 0 :(得分:-6)

您应该执行以下操作:

window.getComputedStyle(
    document.querySelector('#id'), ':after' 
).getPropertyValue('content');

此处的示例:http://jsfiddle.net/karlgroves/uqcUu/或此处http://jsfiddle.net/Ts6jh/2/