为什么responseText输出?

时间:2015-07-11 12:50:49

标签: javascript jquery codeigniter

CodeIgniter 3.0

表单使用按钮作为提交事件: <button type="button" name="submit">SEARCH</button>

这是我到目前为止非常简单的javascript,我不明白为什么它应该在警告框中输出表单页面:

$( document ).ready(function() {
    $("button[name='submit']").click(function(){
        //
    });        
});

使用readystate,statustext和responsetext生成一个警告框:

200 , OK, <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
(...and the entire html output of the form page goes here...)
</body>
</html>

我不明白为什么我的js应该输出任何东西,如果我还没有告诉它。

1 个答案:

答案 0 :(得分:1)

事实证明,我在脑海中调用另一个javascript,它有一个相同的$(document).ready(function脚本部分。即使<button name='submit']也是一样的,所以我的javascript很混乱,只是抛出了状态代码和响应文本。