No Description

1common.js 1.1KB

    $(document).ready(function(e) { //widget("selA"); // widget("selB"); //widget("selC"); //widget("selD"); // widget("eA"); //widget("eB"); // widget("eC"); widget("city"); widget("area"); }); function widget(node){ $("."+node+" span").click(function () { $("."+node+" ul").toggle(); }); $("."+node+" ul li").click(function () { $("."+node+" ul").hide(); $("."+node+" b").html($(this).text()); }); } /*$(".selA span").click(function () { $(".selA ul").toggle(); }); $(".selA ul li").click(function () { $(".selA ul").hide(); $(".selA b").html($(this).text()); });*/ function openUrl(url){ location.href=url; }; $(function(){ $(".set").mouseover(function(){ $(".set ul").show(); }); $(".set").mouseout(function(){ $(".set ul").hide(); }); }) $(function() { $("#xh").focus(function() { $(".img1").show(); $(".img2").hide(); }); $("#kk").focus(function() { $(".img1").hide(); $(".img2").show(); }); });