$(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;
            }
        }
    });
});