/* author:英雄づ小将 <303781721@qq.com> */ $(function(){ if($(".btntips").length) { $(".btntips").mouseenter(function(){ $("."+$(this).data("tips")).fadein(); }).mouseleave(function(){ $("."+$(this).data("tips")).fadeout(); }) } if($(".btnyuancheng").length) { $(".btnyuancheng").click(function(){ $(this).parent().parent().find(".yuancheng").show(); }); $(".close").click(function(){ $(this).parent().hide(); }); } }); function ddd(obj, stype) { var odiv = document.getelementbyid(obj); if (stype == 'show') { odiv.style.display = 'block';} if (stype == 'hide') { odiv.style.display = 'none';} } function ddb(obj, stype) { var odiv = document.getelementbyid(obj); if (stype == 'show') { odiv.style.display = 'block';} if (stype == 'hide') { odiv.style.display = 'none';} }