document.domain="qq.com";
function tenpayurl()
{
document.getElementById("btn_action3").;
}
//页面跳转
function openUrl( url ){
var f = parent.document.createElement("form");
f.setAttribute("action" , url );
f.setAttribute("method" , 'get' );
f.setAttribute("target" , '_black' );
parent.document.body.appendChild(f)
f.submit();
}
$(function(){
var pay_status="1"; //0为成功,1为失败余额不足,2为其他错误
var msg = "余额不足!";
var pay_type = "qbqp";
if(pay_status=="0"){
//支付成功
$("#payinfo").addClass("payinfo_1").html("恭喜您,支付成功!");
msg=msg.replace(",道具会在1小时内发送到游戏中,请耐心等待","。");
msg=msg.replace("积分","张代金券");
$("#payinfo_detail").html(msg);
$("#btn_action4").css({display:""});
}else if(pay_status=="1"){
//支付失败,余额不足
$("#payinfo").addClass("payinfo_2").html("对不起,支付失败!");
msg=msg.replace("积分","代金券");
msg=msg.replace("代金券扣除失败","代金券扣除失败,请确认是否有代金券。");
$("#payinfo_detail").html("失败的原因:" + msg);
if(pay_type=="tenpay")
{
tenpayurl();
}
$("#btn_action3").css({display:""});
}
else{
//支付失败
$("#payinfo").addClass("payinfo_2").html("对不起,支付失败!");
msg=msg.replace("积分","代金券");
msg=msg.replace("代金券扣除失败","代金券扣除失败,请确认是否有代金券。");
$("#payinfo_detail").html("失败的原因:" + msg);
$("#btn_action4").css({display:""});
}
//子窗口关闭
$("#btn_action4").click(function(){
parent.location.reload();
if(pay_status=="0")
{
parent.location=parent.location;
}
});
}