1

有人可以帮我解决一个简单的 jQuery 代码,当单击不同的单选按钮时,它会显示不同的内容。
http://jsfiddle.net/AXsVY/

HTML

<label class="radio inline">
    <input id="up_radio" type="radio" name="optionsRadios" value="update" checked>
    Update
</label>
<label class="radio inline">
    <input id="ov_radio" type="radio" name="optionsRadios" value="overwritten">  
    Overwritten
</label>

<p id="cont">
    sth. here
</p>

JavaScript

$("#up_radio").click(function(){

    if ($("#up_radio").is(":checked")) {

        //change to "show update"
         $("#cont").value = "show update";

    } else if ($("#ov_radio").is(":checked")) {

       // change to "show overwritten"
    }
});
4

3 回答 3

13

http://jsfiddle.net/AXsVY/2/

用于更改而不是单击。点击触发器发生变化,但用户也可以跨过标签并点击箭头键。它会永远change

$('input[name="optionsRadios"]').on('change', function(){
    if ($(this).val()=='update') {
         //change to "show update"
         $("#cont").text("show update");
    } else  {
         $("#cont").text("show Overwritten");
    }
});

此外,设置值的正确语法是,$("#something").val("the value");但在这种情况下 #cont 是一个 div,因此您需要使用.text()or .html()

于 2013-03-07T02:36:39.923 回答
3

根据您的方法已解决。您可以进行更多优化,但我主要保持原样:

http://jsfiddle.net/digitalextremist/mqrHs/

这是小提琴外的代码:

$(".radio input[type='radio']").on( 'click', function(){
    if ($("#up_radio").is(":checked")) {
         $("#cont").html( "show update" );
    } else if ($("#ov_radio").is(":checked")) {
         $("#cont").html( "show overwritten" );
    }
});
于 2013-03-07T02:41:41.063 回答
0
   $("input:radio[name=optionsRadios]").click(function() {
        var value = $(this).val();

        if(value="update")
          $("#cont").text("show update");   
       else
         $("#cont").text("show update other");

    });
于 2013-03-07T02:37:10.203 回答