https页面post数据到http页面
在一个https的页面用如下方式发送请求:
$.post(url,data);
其中url是类似这样的:http://127.0.0.1/index.php
但是chrome浏览器执行到这句时报错:
Mixed Content: The page at 'https://localhost:8443/xxxxxxxxxxx' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://localhost:8099/simu.php'. This request has been blocked; the content must be served over HTTPS.
目前想到两种方式:
1.能否通过某种方法绕过https页面不能请求http页面这个限制?
2.在后台发送Post请求。这样就能避开浏览器的限制,希望有个例子参照。
望各位前辈、同仁不吝赐教,十分感谢!
post jquery https Ajax 数据 http localhost 页面