SELECT元素中的图像

时间:2009-11-08 21:37:44

标签: html css html-select

我知道如何使用CSS background-image属性在HTML下拉表单元素的选项旁边显示图片。

但是,图像不会显示在所选元素上。有没有办法做到这一点(最好只使用CSS)?

修改

以下是列表元素的工作代码示例。但是,当关闭下拉列表时,您只能看到所选元素的文本,而不显示图像:

<select name="form[location]">
    <option value="ad" style="background: url(img/flags/ad.gif) no-repeat; padding-left: 20px;">Andorra</option>
    <option value="ae" style="background: url(img/flags/ae.gif) no-repeat; padding-left: 20px;">United Arab Emirates</option>
    <option value="af" style="background: url(img/flags/af.gif) no-repeat; padding-left: 20px;">Afghanistan</option>
    <option value="ag" style="background: url(img/flags/ag.gif) no-repeat; padding-left: 20px;">Antigua and Barbuda</option>
    <option value="ai" style="background: url(img/flags/ai.gif) no-repeat; padding-left: 20px;">Anguilla</option>
    <option value="al" style="background: url(img/flags/al.gif) no-repeat; padding-left: 20px;">Albania</option>
    <option value="am" style="background: url(img/flags/am.gif) no-repeat; padding-left: 20px;">Armenia</option>
    <option value="an" style="background: url(img/flags/an.gif) no-repeat; padding-left: 20px;">Netherlands Antilles</option>
    <option value="ao" style="background: url(img/flags/ao.gif) no-repeat; padding-left: 20px;">Angola</option>
    <option value="ar" style="background: url(img/flags/ar.gif) no-repeat; padding-left: 20px;" selected="selected">Argentina</option>

    [...] - I think you get the idea.

</select>

2 个答案:

答案 0 :(得分:12)

以跨浏览器的方式执行此操作将非常具有挑战性,我怀疑,这是不可能的。

相反,您可能希望尝试使用外观和行为类似于选择框的小部件,但是使用HTML&amp;的JavaScript。

这是使用jQuery实现它的一种方法:

jquery.combobox

答案 1 :(得分:6)

我同意Nicholaides。使用HTML和CSS严格执行此操作无效。

您需要使用渐进增强技术在页面上为不使用javascript或使用屏幕阅读器等的用户放置常规选择框,然后使用javascript替换更漂亮的选择框,发烧友小工具。