如何从URL中提取特定字段构建长尾关键词?

2026-04-06 12:041阅读0评论SEO基础
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计315个文字,预计阅读时间需要2分钟。

如何从URL中提取特定字段构建长尾关键词?

javascript// URL参数处理函数function UrlParm() { // 初始化参数列表和数据索引 var data=[]; var index={};

如何从URL中提取特定字段构建长尾关键词?

// 初始化函数 function init() { data=[]; index={}; var u=window.location.search.substr(1); if (u !=='') { var parms=decodeURIComponent(u).replace(/\//g, '').split('&'); for (var i=0, len=parms.length; i URL处理

UrlParm = function() { // url参数 var data, index; (function init() { data = []; index = {}; var u = window.location.search.substr(1); if(u != '') { var parms = decodeURIComponent(u).replace(/&/g,"&").split('&'); for(var i = 0, len = parms.length; i < len; i++) { if(parms[i] != '') { var p = parms[i].split("="); if(p.length == 1 || (p.length == 2 && p[1] == '')) { // p | p= data.push(['']); index[p[0]] = data.length - 1; } else if(typeof(p[0]) == 'undefined' || p[0] == '') { // =c | = data[0] = [p[1]]; } else if(typeof(index[p[0]]) == 'undefined') { // c=aaa data.push([p[1]]); index[p[0]] = data.length - 1; } else { // c=aaa data[index[p[0]]].push(p[1]); } } } } })(); return { // 获得参数,类似request.getParameter() parm: function(o) { // o: 参数名或者参数次序 try { return(typeof(o) == 'number' ? data[o][0] : data[index[o]][0]); } catch(e) {} }, //获得参数组, 类似request.getParameterValues() parmValues: function(o) { // o: 参数名或者参数次序 try { return(typeof(o) == 'number' ? data[o] : data[index[o]]); } catch(e) {} }, //是否含有parmName参数 hasParm: function(parmName) { return typeof(parmName) == 'string' ? typeof(index[parmName]) != 'undefined' : false; }, // 获得参数Map ,类似request.getParameterMap() parmMap: function() { var map = {}; try { for(var p in index) { map[p] = data[index[p]]; } } catch(e) {} return map; } } }(); 使用方法 例如: id = UrlParm.parm("id")

本文共计315个文字,预计阅读时间需要2分钟。

如何从URL中提取特定字段构建长尾关键词?

javascript// URL参数处理函数function UrlParm() { // 初始化参数列表和数据索引 var data=[]; var index={};

如何从URL中提取特定字段构建长尾关键词?

// 初始化函数 function init() { data=[]; index={}; var u=window.location.search.substr(1); if (u !=='') { var parms=decodeURIComponent(u).replace(/\//g, '').split('&'); for (var i=0, len=parms.length; i URL处理

UrlParm = function() { // url参数 var data, index; (function init() { data = []; index = {}; var u = window.location.search.substr(1); if(u != '') { var parms = decodeURIComponent(u).replace(/&/g,"&").split('&'); for(var i = 0, len = parms.length; i < len; i++) { if(parms[i] != '') { var p = parms[i].split("="); if(p.length == 1 || (p.length == 2 && p[1] == '')) { // p | p= data.push(['']); index[p[0]] = data.length - 1; } else if(typeof(p[0]) == 'undefined' || p[0] == '') { // =c | = data[0] = [p[1]]; } else if(typeof(index[p[0]]) == 'undefined') { // c=aaa data.push([p[1]]); index[p[0]] = data.length - 1; } else { // c=aaa data[index[p[0]]].push(p[1]); } } } } })(); return { // 获得参数,类似request.getParameter() parm: function(o) { // o: 参数名或者参数次序 try { return(typeof(o) == 'number' ? data[o][0] : data[index[o]][0]); } catch(e) {} }, //获得参数组, 类似request.getParameterValues() parmValues: function(o) { // o: 参数名或者参数次序 try { return(typeof(o) == 'number' ? data[o] : data[index[o]]); } catch(e) {} }, //是否含有parmName参数 hasParm: function(parmName) { return typeof(parmName) == 'string' ? typeof(index[parmName]) != 'undefined' : false; }, // 获得参数Map ,类似request.getParameterMap() parmMap: function() { var map = {}; try { for(var p in index) { map[p] = data[index[p]]; } } catch(e) {} return map; } } }(); 使用方法 例如: id = UrlParm.parm("id")