1.js方案

<!DOCTYPE html>

<html>
<head>
<meta charset=utf-8 />
 <title>test</title> 
    <script language="javascript" type="text/javascript">
       var isChecked = false;
    function setChecked (obj) {
        isChecked = isChecked ? false true;
        obj.checked = isChecked;
    };
</script>
<body>
<input type="radio" name="isTest" id="isTest" onclick="setChecked(this);"/>
</body>
</html>
 
2.jQuery方案

$('#AgencyNew_fill_account').attr("checked", false);

$('#AgencyNew_fill_account').attr("checked", true);

相关文章:

  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
  • 2021-12-09
  • 2021-12-09
  • 2021-12-09
  • 2022-01-06
猜你喜欢
  • 2021-12-09
  • 2021-12-09
  • 2021-11-08
  • 2021-12-09
  • 2021-11-21
相关资源
相似解决方案