gpt4 book ai didi

javascript - 如何在创建选项时更改选项的背景图像?

转载 作者:行者123 更新时间:2023-11-28 20:59:21 25 4
gpt4 key购买 nike

我正在选择元素中创建一个选项并尝试更改背景图像。

nextItem = document.createElement('option');

nextItem.innerHTML = text;

nextItem.style.backgroundImage = "url(icons/add.png);";

nextItem.className = "class1";

但是,当我使用 firebug 时,我可以看到实际创建的是:

<option class="class1" style="">text</option>

为什么它创建了 style 属性但没有在其中放入任何信息?

最佳答案

删除网址中的分号。

更改:

nextItem.style.backgroundImage = "url(icons/add.png);";

至:

nextItem.style.backgroundImage = "url(icons/add.png)";

<强> jsFiddle example

关于javascript - 如何在创建选项时更改选项的背景图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11416688/

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