我无法使用JQuery加载网页/网站,因为该网站的安全证书无效。 无论如何强行使用JQuery加载带有无效安全证书的网站?
我的FireFox控制台出现以下错误:
www.example.com使用无效的安全证书。证书不受信任,因为它是自签名的。证书只是 对new.example.com有效错误代码:SEC_ERROR_UNKNOWN_ISSUER
我的测试代码是:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("#div1").load("https://www.example.com");
});
});
</script>
</head>
<body>
<div id="div1"><h2>Let jQuery AJAX Change This Text</h2></div>
<button>Get External Content</button>
</body>
</html>
答案 0 :(得分:2)
你做不到。只有用户(或本地程序)才能在浏览器中添加例外。
答案 1 :(得分:0)
下载jquery文件并建立本地链接,请勿使用其他服务器上的在线链接。