【问题标题】:Radio button value is not changing for second time单选按钮值第二次没有改变
【发布时间】:2021-01-22 19:09:35
【问题描述】:

我有 3 个单选按钮,如下所示。

我想根据单选按钮的选择更改 textbox1 和 textbox2 的占位符。

            @Html.RadioButtonFor(model => model.Type, "feet")
            @Html.Label("feet ")
              
            @Html.RadioButtonFor(model => model.Type, "meter")
            @Html.Label("meter")
              
            @Html.RadioButtonFor(model => model.Type, "cm")
            @Html.Label("Centimeter")

javascrpt 代码

  $(':radio[name=Type]').change(function () {        
        var value = $(this).val();
        var radiobutton= $(':radio[name=Type]:checked').val();
        $("#Type").val($(this).val());
        $("#textbox1").attr('placeholder', $(this).val())
        $("#textbox2").attr('placeholder', $(this).val())
  });

当我第一次单击单选按钮时,时间占位符会根据所选单选按钮发生变化。

但是当我第二次单击第一个单选按钮(英尺)时,它的值没有改变,但其他单选按钮的值正在改变。

我需要在哪里进行更改?

提前致谢。

【问题讨论】:

    标签: javascript c# jquery asp.net-mvc asp.net-mvc-5


    【解决方案1】:

    通过为单选按钮添加唯一 ID 解决了问题

    @Html.RadioButtonFor(model => model.Type, "feet", new { id = "feet" })
    @Html.Label("feet ")
      
    @Html.RadioButtonFor(model => model.Type, "meter", new { id = "meter" })
    @Html.Label("meter")
      
    @Html.RadioButtonFor(model => model.Type, "cm", new { id = "cm" })
    @Html.Label("Centimeter")
    

    【讨论】:

      猜你喜欢
      • 2019-12-17
      • 2015-12-03
      • 2017-07-02
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-11-22
      • 2013-02-25
      • 1970-01-01
      相关资源
      最近更新 更多