0

提前致谢。

请找到以下脚本,它会在 fire fox 和 "no" chrome 中提醒 e.value = "yes" ...这段代码有什么问题?

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />        
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>new_file</title>                 
        <script type="text/javascript">     
            function func(){                
                alert("I am at Func")
            }

            var i = 0;
            document.write("<form style='display: block'><input name='test' id='test' value='no'></form>");

            window.onload = function () {
                global();   
            };

            function global(){
                var e=document.getElementById("test");
                alert(e.value);
                if(e.value=="no" && i == 0 ){
                    e.value="yes";                      
                    i = 1;              
                }
                else {
                    //e.value="no";                 
                    func(); 
                }
            }                               
        </script>
    </head>
    <body>

    </body>
</html>

我需要的是基于我需要调用 func() 的 e.value?有谁请回答一下...

4

0 回答 0