说我有以下CSS:
content : "\F069";
我尝试了
window.getComputedStyle(document.getElementById("id"), ":after").getPropertyValue("content").toString();
它给了我符号““”“
如何获取结果字符串“ \ F069”?
答案 0 :(得分:-6)
您应该执行以下操作:
window.getComputedStyle(
document.querySelector('#id'), ':after'
).getPropertyValue('content');
此处的示例:http://jsfiddle.net/karlgroves/uqcUu/或此处http://jsfiddle.net/Ts6jh/2/