未捕获的SyntaxError:jquery中的无效或意外令牌

时间:2019-07-04 10:00:33

标签: javascript jquery

enter image description here如果我使用`:它在Chrome浏览器中可以正常工作,但不能在IE上运行,如果我删除并尝试使用'或“得到无效或意外错误,请对此提供帮助。

jQuery('label.common-label').each(function(item){
    let obj = this;
    let color = jQuery(obj).css('background-color');
    let classList = jQuery(obj).attr('class').split(' ');
    let str = '';
    for(var i=0; i < classList.length; i++) {
        str += '.' + classList[i];
    }

    str = 'label' + str + '::before';
    let str1 = '.active-facet ' + str;

    console.log(color);
    let styleList = '<style>
    ${str}{
        border-color: ${color} !important;
    }
    ${str1}{
        background-color: ${color} !important;
    }

</style>';
    jQuery(obj).parent().append(styleList);
});

0 个答案:

没有答案