2

我目前正在使用复选框并根据所选值显示值。几乎所有东西都在我必须选中复选框的异常情况下工作method of shipping。现在用户可以选择两种方式,这是一个问题。有没有办法只允许检查一个复选框method of shipping例子

JS

<script>
function check_value(currentElement, val, id, type) {
    var el = document.getElementById("imgBox" + id);
    if (val > 0 && val < 4) { //will trigger when [1,2,3]

        if(currentElement.checked)
        {
            el.src = "images/" + type + val + ".jpg";
            el.style.display = "";
        }
        else
        {
            el.src = "";
            el.style.display = "none";
        }

    }
}    
</script>

HTML

<h2>Choose method of shipping</h2>
<form name="shipping_list">
    <input type="checkbox" name="shipping1" onclick='check_value(this, 1, "4", "shipping")'/> USPS Ground<br />
    <input type="checkbox" name="shipping2" onclick='check_value(this, 2, "4", "shipping")'/> FedEx         
</form>

<img id="imgBox4" src="#" style="display:none">
4

3 回答 3

6

您应该改用单选按钮:

<form name="shipping_list">
    <input type="radio" name="shipping" id="shipping1" onclick='check_value(this, 1, "4", "shipping")'/> USPS Ground<br />
    <input type="radio" name="shipping" id="shipping2" onclick='check_value(this, 2, "4", "shipping")'/> FedEx         
</form>

键是name属性,属于一组的所有单选按钮的值应该相同。

于 2012-09-08T18:48:17.610 回答
3

单选按钮怎么样?

<input type="radio" name="shipping" onclick="check_value(this, 1, '4', 'shipping');">
于 2012-09-08T18:47:35.737 回答
0
$(function() { 
  $('input[type="checkbox"]').bind('click',function() {
    $('input[type="checkbox"]').not(this).prop("checked", false);
  });
});
于 2015-01-05T12:53:34.590 回答