gpt4 book ai didi

jquery - 如何使用 jquery 将变量传递到分配给元素的 html 中

转载 作者:行者123 更新时间:2023-12-01 06:48:39 24 4
gpt4 key购买 nike

我正在尝试做这样的事情:

$('#player-container').html('<div id="film-player" class="flowplayer play-button is-splash"  style="background:#777 url(myVariable) no-repeat;">');

html 未显示,因为它不在此处的代码块中。基本上我试图嵌套一个像这样的变量: style equals background url(myVariable) 在我动态分配给元素的html中。

最佳答案

由于您使用单引号开始字符串,因此您再次使用 '+ 进行连接,如下所示:
url(' + myVariable + ')

所以你的代码应该是:

$('#player-container').html('<div id="film-player" class="flowplayer play-button is-splash"   style="background:#777 url('+myVariable+') no-repeat;">');

有关连接运算符(在 JavaScript 中)的更多信息,请访问 MDN

关于jquery - 如何使用 jquery 将变量传递到分配给元素的 html 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18622739/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com