2

我一直在尝试使用 HTML、CSS 和 JavaScript 制作自定义单选按钮。我一直在查看以前关于单选按钮的问题,我觉得我已经实现了这些建议,但我的 jpeg 图像仍然被切成两半。我显然错过了一些东西,但不确定它是什么。下面是我的 HTML CSS 和 JavaScript。任何投入将不胜感激。

<style TYPE="text/css">
.has-js .label_check,
.has-js .label_radio { padding-left: 40px;}
.has-js .label_radio {
background: url(images/radio_button-21.jpg) no-repeat;
width: 33px;
height: 35px;}

.has-js .label_check { background: url(check-off.png) no-repeat; }
.has-js label.c_on { background: url(check-on.png) no-repeat; }
.has-js label.r_on { 
background: url(images/radio_button_selected.jpg) no-repeat;
width: 33px;
height: 35px;}

.has-js .label_check input,
.has-js .label_radio input { position: absolute; left: -9999px;}

</style>

</head>

<label class="label_radio" for="radio-01">
    <input name="sample-radio" id="radio-01" value="1" type="radio" />
    Yes
</label>


<br />
<br />

<label class="label_radio" for="radio-02">
    <input name="sample-radio" id="radio-02" value="2" type="radio" />
    No
</label>

<br />
<br />

<label class="label_radio" for="radio-03">
    <input name="sample-radio" id="radio-03" value="3" type="radio" />
    Maybe
</label>


</body>

JavaScript 代码

onload = function() {

    var body = gebtn(d,'body')[0];
    body.className = body.className && body.className != '' ? body.className + ' has-js' : 'has-js';

    if (!d.getElementById || !d.createTextNode) return;
    var ls = gebtn(d,'label');
    for (var i = 0; i < ls.length; i++) {
        var l = ls[i];
        if (l.className.indexOf('label_') == -1) continue;
        var inp = gebtn(l,'input')[0];
        if (l.className == 'label_check') {
            l.className = (safari && inp.checked == true || inp.checked) ? 'label_check c_on' : 'label_check c_off';
            l.onclick = check_it;
        };
        if (l.className == 'label_radio') {
            l.className = (safari && inp.checked == true || inp.checked) ? 'label_radio r_on' : 'label_radio r_off';
            l.onclick = turn_radio;
        };
    };
};
var check_it = function() {
    var inp = gebtn(this,'input')[0];
    if (this.className == 'label_check c_off' || (!safari && inp.checked)) {
        this.className = 'label_check c_on';
        if (safari) inp.click();
    } else {
        this.className = 'label_check c_off';
        if (safari) inp.click();
    };
};
var turn_radio = function() {
    var inp = gebtn(this,'input')[0];
    if (this.className == 'label_radio r_off' || inp.checked) {
        var ls = gebtn(this.parentNode,'label');
        for (var i = 0; i < ls.length; i++) {
            var l = ls[i];
            if (l.className.indexOf('label_radio') == -1)  continue;
            l.className = 'label_radio r_off';
        };
        this.className = 'label_radio r_on';
        if (safari) inp.click();
    } else {
        this.className = 'label_radio r_off';
        if (safari) inp.click();
    };
};
4

3 回答 3

2

如果无法运行您的代码,或者至少无法查看其外观的屏幕截图,这很难说。但在我看来,单选按钮(或它周围的包含元素)的宽度和/或高度对于您正在使用的图像大小来说太小了。如果是这样,指定适当宽度或高度的 CSS 声明应该修复它。

编辑:为了解决这些问题,我喜欢在 Chrome 浏览器中工作,这样我就可以使用它内置的开发人员工具。在 Chrome 中,我可以右键单击一个元素并选择“检查元素”。这使我能够浏览 DOM 并查看影响每个元素的 CSS 说明符,并通过实验调整它们,直到我诊断出问题为止。

于 2012-06-14T00:09:59.020 回答
1

确保您的图像文件与单选按钮的大小相同。

无论如何,我不明白为什么会有 JavaScript。它可以是纯 CSS:http:
//jsfiddle.net/DerekL/9MtMx/

input[type="radio"]{
    -webkit-appearance:none;
    -moz-appearance:none;
    border-radius:8px;
    border:1px solid #dbdbdb;
    width:16px;
    height:16px;
    cursor:pointer;
    margin:0 1px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f2f2f2));
    vertical-align:bottom;
}

input[type="radio"]:checked{
    background-position:0px 0px;
    background-image: url('checked.png'), -webkit-gradient(linear, left top, left bottom, from(white), to(#f2f2f2));
}
于 2012-06-14T00:25:02.663 回答
0

这样做的 CSS 方式是恰当的,但不幸的是,我们仍然需要忍受 IE 6、7 和 8,它们可能不支持这一点。最好的方法是使用 JS 方法,仅适用于不兼容的浏览器(IE !!!),其余的仍然使用 CSS。

于 2012-10-17T15:48:28.217 回答