我对 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) {
});
}
});
任何建议如何解决它?
谢谢之前:)