<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>Document</title>
  <script language="Javascript">
    function hide() {
        var mode = document.getElementById("mode");
        var hykhLk = document.getElementById("hykh_lk");
        if (mode.value != 1)
        {
            hykhLk.setAttribute("readOnly",true);
            hykhLk.style.backgroundColor="#d2d2d2";
        }
        else
        {
            hykhLk.removeAttribute("readOnly");
            hykhLk.style.backgroundColor="#ffffff";
        }
    }
  </script>
 </head>
 <body>
  <select name="mode" />
 </body>
</html>

相关文章:

  • 2021-10-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-11
猜你喜欢
  • 2021-08-20
  • 2022-12-23
  • 2021-07-17
  • 2021-10-27
  • 2022-12-23
相关资源
相似解决方案