0

是否可以使用 jQuery buttonset() 将图像作为背景?

我尝试使用此标记,但设计搞砸了:

    <input type="radio" id="radio1" name="radio" />
    <label for="radio1" id="lbl1">
        <img src="images/red.png" />
    </label>
    <input type="radio" id="radio2" name="radio" checked="checked" />
    <label for="radio2">
        <img src="images/blue.png" />
    </label>
    <input type="radio" id="radio3" name="radio" />
    <label for="radio3">
        <img src="images/orange.png" />
    </label>

在此处输入图像描述

我用谷歌搜索插件,但没有找到我需要的。

有人试过这个吗?

4

1 回答 1

0

你可以检查这个小提琴:

http://jsfiddle.net/c3KmQ/

它使用 jQueryUI 按钮集,可轻松定制:

$( "#radio" ).buttonset();
$($('.ui-button')[0]).addClass('bgcolor-red');
$($('.ui-button')[2]).addClass('bgcolor-black');
于 2012-09-05T21:51:13.033 回答