js获取各搜索引擎的关键词

本文介绍了一种使用JavaScript从URL中获取查询字符串参数的方法,通过分析referrer来判断来自不同的搜索引擎并提取关键字。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

//方法
function GetQueryString() {    
    var refer = document.referrer;
    refer = refer + '&';
    var matches = '';   
    if(refer.match(/(www|m|youxuan)\.baidu/)){
        matches = refer.match(/\W(wd|word)\=(.*?)\&/i);
        if(matches){
            matches = matches[2];
        }
    };
    if(refer.match(/m\.sm\.cn/)) {      
        matches = refer.match(/q\=(.*?)\&/i);
        if(matches) {
            matches = matches[1];
        }
    };
    if(refer.match(/sogou\.com/)) {
        matches = refer.match(/keyword\=(.*?)\&/i);
        if(matches) {
            matches = matches[1];
        }
    };
   if(refer.match(/so\.com/)) {
        matches = refer.match(/q\=(.*?)\&/i);
        if(matches) {
            matches = matches[1];
        }
    };
    if(matches && matches.indexOf("%") == 0) {
        matches = decodeURIComponent(matches);
    } else {
        matches = '';
    };

    return matches;
};

// 调用方法
var $wd=GetQueryString();
if($wd&&$wd.length>0){

}else{
    $wd=GetQueryString("word")
}

if($wd&&$wd.length>0){
    $wd=decodeURIComponent($wd);

    $line='关于【“'+$wd+'”】的问题,很荣幸为您解答疑问!';
}else{

    $line=' 您好,这里是......,请问有什么可以帮到您?';
}
$('#textFirst').html($line+"<span class=\"red\">(咨询)</span>");

 

转载于:https://www.cnblogs.com/linyusong/p/10267399.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值