firefox jquery ajax跨站点

firefox jquery ajax跨站点,jquery,ajax,firefox,Jquery,Ajax,Firefox,我有以下jQueryAjax代码,在IE、Chrome和Opera中运行良好。然而,在Firefox中,它被中止(调用远程计算机,但远程计算机称存在“握手问题”) 我已经设置了主机头访问控制允许源“*”等。服务器支持CORS(IE和Chrome就是这样实现的) 有什么想法吗 $(document).ready(function () { jQuery.support.cors = true; $.ajax({ url: "tlscheck.site.com:

我有以下jQueryAjax代码,在IE、Chrome和Opera中运行良好。然而,在Firefox中,它被中止(调用远程计算机,但远程计算机称存在“握手问题”)

我已经设置了主机头访问控制允许源“*”等。服务器支持CORS(IE和Chrome就是这样实现的)

有什么想法吗

$(document).ready(function () { 
 jQuery.support.cors = true;      
    $.ajax({
       url: "tlscheck.site.com:10443/a/check",
       type: "GET",
       crossDomain: true,
       success: function (json) {
          UpdateDatabaseForTLSVersion(json);
       },
       error: function(jqXHR, status, strErr) {
          //alert("Error: " + status);
          //alert(strErr);
       }
    });      
});