JQuery CSS意外的模板字符串

时间:2018-03-08 14:05:46

标签: javascript jquery templates syntax

所以我试图使用这个简单的简单代码:

$(`#${id}`).css({
    `position`: `fixed`
}).width(width).height(height);

但是,中间行在执行时给我一个错误:Uncaught SyntaxError: Unexpected template string。我不知道还有什么我可以添加到这个问题上,为什么会发生这种情况,所以我会告诉你们。

1 个答案:

答案 0 :(得分:0)

您在下面使用了错误的jquery语法。

注意:我希望您正确使用宽度和高度参数。

$("#id").css({
    "position": "fixed"
}).width(width).height(height)