123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /**
- * Created by Administrator on 2017/2/9 0009.
- */
- ;(function($){
- //搜索
- $("#search-bar").click(function(){
- $(this).hide();
- $(".search-view-top-result").show();
- var wid = $(window).width();
- wid = wid>=640?640:wid;
- $("#result-input").width(wid-120).focus();
- });
- //监控表单变化
- $("#result-input").bind('input propertychange',function(){
- var leng = $(this).val().length;
- if(leng==0){
- $(".cancel-button-view").show();
- $(".search-content-clear").hide();
- $(".submit-button-view").hide();
- }else{
- $(".search-content-clear").show();
- $(".submit-button-view").show();
- $(".cancel-button-view").hide();
- }
- });
- $(".search-content-clear").click(function(){
- $("#result-input").val('');
- $(".cancel-button-view").show();
- $(this).hide();
- $(".submit-button-view").hide();
- });
- $(".cancel-button-view").click(function(){
- $(".search-view-top-result").hide();
- $("#search-bar").show();
- });
- $("#goshop").click(function () {
- $(".tanchubg").show();
- $(".zhifu_tanchu").show();
- $("body").addClass('body_fixed');
- });
- $(".tanchubg").click(function(){
- $(this).hide();
- $(".zhifu_tanchu").hide();
- $("body").removeClass('body_fixed');
- })
- })(jQuery);
|