无法在Internet上发送发布请求Jquery $ .Post探索9 ActiveX过滤

时间:2013-04-22 08:27:00

标签: php jquery

我遇到了Iexplore 9 ActiveX过滤问题。

我创建了一个通过jquery $ .post设置会话的应用程序,当我在Iexplore 9中启用ActiveX过滤时,它会阻止发布请求。

$('.sidid').click(function(){
    val = $(this).val();
    if ($(this).is(':checked')) { //when checked
        $.post("session_cetak_po.php", {"sidid":val}, function(results) {
        });
    }else{ //when unchecked
        $.post("session_cetak_po.php", {"sidid":val,"unchecked":"1"}, function(results) {
        });
    }
});

有任何建议如何修复它?

之前感谢:)

1 个答案:

答案 0 :(得分:0)

不要启用ActiveX过滤。 :)

使用load()而不是post()。 load()通过GET发送数据