熊猫办公系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
384 B

//yecha制作 微信支付
$(function(){
setInterval("weixinstatus()", 3000);
})
function weixinstatus() {
var ddid=$("#out_trade_no").text();
if (ddid) {
$.get("/e/payapi/pcweixin/ajax.php?tradeno=" + ddid,function(data,status){
if(data=="1"){
window.location.href = "/e/payapi/pcweixin/success.php"; //页面跳转
}
});
}
}