你好,我有这段代码可以使表单在发送提交按钮的同一页面中发送php文件的输出。它在http下工作正常,但在https上无法正常工作,它转到php文件并在其中显示输出。
<script>
$(document).ready(function(){
$("#compras").validate({
debug: false,
rules: {
cantidad: {
required: true,
number: true
},
price: {
required: true,
number: true
},
bolivar: {
required: true,
number: true
}
},
submitHandler: function(event) {
// do other stuff for a valid form
$.post('https://www.swapngo.org/process_compra.php', $("#compras").serialize(), function(data) {
$('#results21').html(data);
});
}
});
});
</script>
<!----------- RESULTADO DEL FORM ---------->
<p><div id="results21"></div></p>
使用div results21,我们从process_compra.php输出结果,该代码在http协议下有效,但在https上,它跳转到另一个文件(php)。任何建议都很感激。