You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
814 B
JavaScript

//<2F><><EFBFBD><EFBFBD>չ<EFBFBD><D5B9><EFBFBD>͹رյ<D8B1><D5B5><EFBFBD>ʽ
function Togle(obj,id){
var mObj = $(obj);
var sObj = $("#"+id);
if(sObj.is(":hidden")){
sObj.slideDown("slow");
mObj.removeClass("filtercategoryclose").addClass("filtercategory");
}else{
sObj.slideUp("slow");
mObj.removeClass("filtercategory").addClass("filtercategoryclose");
}
}
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>X<EFBFBD>󣬹رղ<D8B1>
$(function(){
$(".closeAds").click(function(){
$(".hotelExpress").hide();
});
});
//ҳ<><D2B3><EFBFBD>϶<EFBFBD>Ӧ<EFBFBD>IJ<EFBFBD>
$(function(){
//table<6C><65><EFBFBD><EFBFBD>Ч<EFBFBD><D0A7> by shw
var overTr=$("#hoverTable tr");
var thisTr=$("#hoverTable tr.hotelInfo");
var theOne=$("#hoverTable tr.hotelInfo:first");
thisTr.hide();
theOne.show();
overTr.mouseover(function(){
var thisClass=$(this).attr("class");
if(thisClass!="hotelInfo"){
thisTr.hide();
var showTr=$(this);
showTr.next("tr").show();
}
});
});