Code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  <title>Untitled Document</title>
  <script language="JavaScript" type="text/javascript">
   function displayDiv(boolDisplay,objValue)
   {
    if (boolDisplay)
     document.getElementById("div1").style.display = "block";
    else {
     document.getElementById("div1").style.display = "none";
     document.getElementById("txt1").value = objValue;
    }
   }
  </script>
  <style type="text/css">
   body{
    
   }
  </style>
 </head>
 <body>
  <div>
  <div><input type="text" /></div>
  <div >
   <input type="radio" />username1
  </div>
  <input type="text" />
  </div>
  
 </body>
</html>

效果已实现.各位只要美好一下就是了!很简单!

相关文章:

  • 2022-02-19
  • 2021-04-21
  • 2022-12-23
  • 2022-01-12
  • 2021-05-21
  • 2022-01-23
猜你喜欢
  • 2022-03-03
  • 2021-11-21
  • 2022-12-23
  • 2021-06-29
  • 2021-07-10
  • 2021-11-21
  • 2022-01-30
相关资源
相似解决方案