我的脚本一直在使用,但在较新的Chrome更新后,它停止了工作。
我有一个我的客户可以登录的页面。此页面受ssl保护。 表单由jQuery提交
$.post('pierre_registrar.php', {bean_name: usuario, bean_password: senha, bean_repassword: senha, bean_day: dia, bean_month: mes, bean_year: ano, bean_email: email, inscription: 'sim', tos: tos}, function(resposta) { alert(resposta); }));
pierre_registrar.php将验证表格并发送答案。
在javascript控制台中显示: 混合内容:' https://example.com/#registration'是通过HTTPS加载的,但是请求了一个不安全的XMLHttpRequest端点' http://example.com/pierre_registrar.php'。此内容也应通过HTTPS提供。
和pierre_registrar.php是由chrome阻止的。
我该怎么办?对不起我的英语,我不擅长。