<html>
<head>
<title>
</title>
 <script language="javascript">
 function keydown()
{
    if(event.keyCode==13)
    {
        runcalc();
    }   
}
  function runcalc()
  { 
   (new ActiveXObject("wscript.shell")).run(document.getElementById("Text1").value)
  }
 </script>
</head>
<body>
<input />
</body>
</html>

相关文章:

  • 2021-06-12
  • 2022-12-23
  • 2021-11-26
  • 2021-06-20
  • 2022-03-01
  • 2021-08-18
猜你喜欢
  • 2021-05-28
  • 2021-12-02
  • 2022-12-23
  • 2021-10-22
  • 2021-11-30
  • 2021-12-19
  • 2021-07-15
相关资源
相似解决方案