不能发送Post请求Jquery $.Internet explorer 9 ActiveX过滤的帖子


Cannot Send Post Request Jquery $.Post on Internet Explore 9 ActiveX Filtering

我使用Iexplore 9 ActiveX过滤有问题。

我创建了一个应用程序,通过jquery $设置会话。当我在iexplorer9中打开ActiveX过滤时,它会阻止post请求。

$('.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) {
        });
    }
});

有什么建议吗?

不要打开ActiveX过滤。:)

使用load()代替post()。