/////////////////// $(document).on("click",".openBuyBox",function(){ var linetype=$("#linetype").val(); if (linetype=='group' && $.trim($("#startdate").val())==''){ alert("请选择出游日期"); $("#startdate").focus(); shake($("#startdate"),"selectshake",4); return false; } openbuybox(); }); function openbuybox(){ $("#jboxBuy").show(); var adult=$("#adult").val(); var child=$("#child").val(); if ($.trim(adult).length==0 || adult<=0){ alert("请输入预订人数(成人)"); $("#adult").focus(); shake($("#adult"),"selectshake",4); return false; } var hideserviceselecthtml=$("#hideserviceselecthtml").val(); var html = '
\
\
\
    \
  • 支付方式:
  • \
  • \ 在线支付\
  • \
\
\
    \
  • 手机号码:
  • \
  • \ \
    \
  • \
\
    \
  • 真实姓名:
  • \
  • \
\
    \
  • 选择客服:
  • \
  • '+hideserviceselecthtml+'
  • \
\
\ \
\
\
\
    \
  • 用户名:
  • \
  • \ \
    \
  • \
\
    \
  • 密码:
  • \
  • \
\
\ \
\
\ 如果您还不是会员请注册忘记密码?
\
\
\ \
\
'; $.jBox.open(html,'订单预订',400,475,{id:"jboxBuy",buttons: {'关闭': true},opacity:0.7,top:'30%'}); $(".formbuy #phone").val($.cookie("szgl_account")); $(".formbuy #name").val($.cookie("szgl_loginname")); }