$(function () { $(".logo button").click(function () { var content = $("#Sou").val(); var type = $("#selectType").val(); if(content.trim().length<2){ layer.tips("请至少输入两个å—符","#Sou"); }else{ if(type=="供应"){ window.location.href="../spzs/?search="+content; }else if(type=="采è´"){ window.location.href="../syjh/qiugou.htm?search="+content; }else if(type=="ä¼ä¸š"){ window.location.href="../qyml/?search="+content; }else if(type=="资讯"){ window.location.href="../hyxx/informationSearch.html?search="+content; }else if(type=="百科"){ window.location.href="../qyfw/encyclopediaSearch.html?search="+content; } } }); });