Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/82.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
IE9更改html ajax响应_Ajax_Jquery_Jquery Forms Plugin_Ajaxform - Fatal编程技术网

IE9更改html ajax响应

IE9更改html ajax响应,ajax,jquery,jquery-forms-plugin,ajaxform,Ajax,Jquery,Jquery Forms Plugin,Ajaxform,我使用jQuery表单插件,将一些数据发送到服务器,然后接收我在页面上插入的HTML $('form').ajaxForm({ success: function(response) { } }); 回应是一些HTML。此HTML无效。所以这是 <tr><td>some</td></tr> 一些 FF和Chrome接收我从服务器发送的相同HTML。但是IE清除了一切 <tr> and <td

我使用jQuery表单插件,将一些数据发送到服务器,然后接收我在页面上插入的HTML

    $('form').ajaxForm({
        success: function(response) {  }
    });
回应是一些HTML。此HTML无效。所以这是

<tr><td>some</td></tr>
一些
FF和Chrome接收我从服务器发送的相同HTML。但是IE清除了一切

<tr> and <td>.
和。

这很糟糕。如何修复它?

使响应中的HTML有效…?是的,如果我向HTML添加“表”标记,它将接收而不更改。但是这种方式对我不好