页面加载默认值没有在jQuery中显示?

时间:2013-04-19 10:18:23

标签: php jquery html

我有五个单选按钮,根据五个不同的单选按钮值,会生成五个span标签,其中包含此单选按钮的说明,如下所示:

<table class="jshop">
    <tbody>
    <tr>
        <td class="attributes_title">
            <span class="attributes_name">Model:</span><span class="attributes_description"></span>
        </td>
        <td>
            <span id="block_attr_sel_3">
            <span class="input_type_radio">
                <input type="radio" name="jshop_attr_id[3]" id="jshop_attr_id35" value="5" checked="true" onclick="setAttrValue('3', this.value);"> 
                <label for="jshop_attr_id35"><span class="radio_attr_label">16 GB</span></label>
            </span>
            <span class="input_type_radio">
                <input type="radio" name="jshop_attr_id[3]" id="jshop_attr_id36" value="6" onclick="setAttrValue('3', this.value);"> 
                <label for="jshop_attr_id36"><span class="radio_attr_label">32 GB</span></label></span>                
            </span>
        </td>
    </tr>
    <tr>
        <td class="attributes_title">
            <span class="attributes_name">What Type?:</span><span class="attributes_description"></span>
        </td>
        <td>
            <span id="block_attr_sel_5">
            <span class="input_type_radio">
                <input type="radio" name="jshop_attr_id[5]" id="jshop_attr_id59" value="9" checked="true" onclick="setAttrValue('5', this.value);"> 
                <label for="jshop_attr_id59"><span class="radio_attr_label">Broken</span></label>
            </span>
            <span class="input_type_radio">
                <input type="radio" name="jshop_attr_id[5]" id="jshop_attr_id510" value="10" onclick="setAttrValue('5', this.value);"> 
                <label for="jshop_attr_id510"><span class="radio_attr_label">Good</span></label>
           </span>
           <span class="input_type_radio">
               <input type="radio" name="jshop_attr_id[5]" id="jshop_attr_id511" value="11" onclick="setAttrValue('5', this.value);"> 
               <label for="jshop_attr_id511"><span class="radio_attr_label">Flawless</span></label></span>                
           </span>
        </td>
    </tr>
    </tbody>
</table>

<span id="attr_5" class="attr_desc"></span>
<span id="attr_6" class="attr_desc"></span>
<span id="attr_9" class="attr_desc">test1</span>
<span id="attr_10" class="attr_desc">test2</span>
<span id="attr_11" class="attr_desc">test3</span>

现在我希望每当用户从上面选择一个单选按钮时,将显示相关说明。所以我试着这样:

<script>
jQuery(document).ready(function() {

    jQuery(".input_type_radio input[type=radio]").change(function() {
        jQuery(".attr_desc").hide();
        var test = jQuery(this).val();

        jQuery("#attr_" + test).show();
    });
    jQuery(".attr_desc").hide();
});
</script>

并且它工作正常但我的问题是每当页面加载时,都不会显示描述,即使默认情况下已经选择了两个值,我不知道为什么它不起作用。请建议我。

3 个答案:

答案 0 :(得分:2)

这是因为您只在更改事件中显示/隐藏对应的跨度...您需要检查document.ready中的选中值并同样显示/隐藏

试试这个

 jQuery(document).ready(function() {

     jQuery(".input_type_radio input[type=radio]").change(function() {
     ..... //your code
     });
     jQuery(".input_type_radio input[type=radio]:checked").each(function(){
      jQuery("#attr_" + $(this).val()).show();
    });

});

working fiddle here

答案 1 :(得分:0)

因此,在绑定更改事件之前,只需检查单选按钮的现有值并相应地隐藏/显示描述。目前,您只是默认隐藏所有描述

答案 2 :(得分:0)

您可以将代码更改为此样式:

jQuery(document).ready(function() {

    jQuery(".input_type_radio input[type=radio]").change(function() {
        showDesc();
    });

    function showDesc() {
        jQuery(".attr_desc").hide();
        var test = jQuery(".input_type_radio input[type=radio]:checked").val();
        jQuery("#attr_" + test).show();
    }
    showDesc();
});