0

当我尝试在除 Internet Explorer 之外的任何其他网络浏览器上运行我的代码时,它工作正常。但是,当我尝试在 Internet Explorer 上运行代码时,我确实收到了一个警告框,上面写着 HERE 以及一个 Ok 按钮。但问题是当我点击那个确定按钮时,我什么也没有得到。理想情况下,我应该得到另一个警报框。

<!DOCTYPE html>
<html>
<head>
    <script src="js/jquery-1.4.2.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){       
        $("#submit").click(function(event) {        
        alert("here");              
        $.post('process.php', {name:'test1',email:'test.com'}, function(data)
        {
            $('#results').html(data);
            alert(data);
        });
      });
    });
    </script>

</head>
<body>
<form name="myform" id="myform" action="" method="POST">
    <label for="name" id="name_label">Name</label>
    <input type="text" name="name" id="name" size="30" value=""/>
    <br>
    <label for="email" id="email_label">Email</label>
    <input type="text" name="email" id="email" size="30" value=""/>
    <br>
    <input type="button" name="submit" id="submit" value="Submit">
</form>
<div id="results"><div>
</body>
</html>

非常感谢您对此的任何帮助。

编辑:我发现具有 HTTP 的 Internet Explorer 工作得非常好,但在使用 HTTPS 的 Internet Explorer 上却不行。

4

3 回答 3

0

将您的代码更改为

<form name="myform" id="myform" action="" method="POST" onsubmit="return validate(this);">
    <label for="name" id="name_label">Name</label>
    <input type="text" name="name" id="name" size="30" value=""/>
    <br>
    <label for="email" id="email_label">Email</label>
    <input type="text" name="email" id="email" size="30" value=""/>
    <br>
    <input type="button" name="submit" id="submit" value="Submit">
</form>
<script>
function validate(elem){
    $.post('process.php', {name:'test1',email:'test.com'}, function(data)
            {
                $('#results').html(data);
                return true;
            });
    return false;

}
</script>
于 2012-07-05T11:40:13.777 回答
0

尝试使用 jquery$.ajax()使用$(fomname).serialize()方法发布表单数据

于 2012-07-11T10:17:07.460 回答
0
function submitYourForm()
{
                $.ajax({
                type: 'POST',
                cache: false,
                async:true,
                url: 'your url',
                data: $('#myform').serialize(), 
                success: function(data) {
                    alert(data);
                }
               });      
}

将您的按钮类型从“提交”更改为“按钮”并调用您的函数 onclick the button like

<input type="button" name="submit" onclick="submitYourForm();" value="Submit" />

删除函数调用 onsubmit。

试试这个

于 2012-11-20T09:28:31.210 回答