This article describes the JS implementation of the acquisition from Baidu, Google,soso,sogou keyword methods. Share to everyone for your reference, specific as follows:
* Can get users, through which keyword access to the page, you can add Sogou,soso, Youdao search engine
/var refer=document.referrer;
var sosuo=refer.split (".") [1];
var grep=null;
var str=null;
var keyword=null;
Switch (Sosuo) {case
"Baidu":
grep=/wd\=.*\&/i;
Str=refer.match (grep)
keyword=str.tostring (). Split ("=") [1].split ("&") [0];
Console.log (decodeuricomponent (keyword));
break;
Case "Google":
grep=/&q\=.*\&/i;
Str=refer.match (grep)
keyword=str.tostring (). Split ("&") [1].split ("=") [1];
Console.log (decodeuricomponent (keyword));
break;
More readers interested in JavaScript-related content can view the site topics: "JavaScript Search Algorithm Skills Summary", "JavaScript data structure and algorithm skills summary", "JavaScript traversal algorithm and Skills summary", " A summary of JSON manipulation techniques in JavaScript, a summary of JavaScript switching effects and techniques, a summary of JavaScript animation effects and techniques, JavaScript errors and debugging tips, and a summary of JavaScript mathematical operational usage
I hope this article will help you with JavaScript programming.