$(document).ready(function () {
        $("input[name='myradio']").each(function () {
            if ($(this).val() == $("#hidKF").val()) {
                $(this).attr("checked", "true");
            }
        });
    })
    //获取客服的名字
    $(function () {
        $(".MyRadio").change(function () {
            $("#hidKF").val($("input[name='myradio']:checked").val());
        })
    });

相关文章:

  • 2021-09-06
  • 2022-12-23
  • 2021-11-25
  • 2022-12-23
  • 2022-12-23
  • 2021-09-02
猜你喜欢
  • 2021-10-30
  • 2021-09-01
  • 2022-12-23
  • 2022-12-23
  • 2021-11-27
  • 2021-11-22
  • 2021-05-23
相关资源
相似解决方案