弹窗
确定
function tc(a, b) {//做成方法,可调用 $("#zhezhao").show(); $("#tanchuang").animate({ top: "100" }, 500).animate({ top: "90" }, 200).animate({ top: "100" }, 200); $("#tc_top").text(a); $("#tc_maintext").text(b);};$("#tc_btnok").click(function () { $("#tanchuang").animate({ top: "-2000" }, 500, function () { $("#zhezhao").hide(); });//点击确定弹走});