heartstill

博客园 首页 新随笔 联系 订阅 管理

静态页htm传参数

2010-03-14 来自:CSDN博客 字体大小:【
  • 摘要:本文介绍静态页htm传参数

//从转向过来的URL中截取参数 开始
function SplitUrl(key)
{
var fstr=key;
var getstr='';
var url=document.URL.toString();
url=url.toLowerCase();//转为小写
var loc=url.indexOf(fstr);
if(loc>0)
{
getstr=url.substring(loc+fstr.length,url.length);
return getstr;
}
else
{
return "";
}
}
//从转向过来的URL中截取参数 结束

posted on 2012-04-08 23:17  开始测试  阅读(323)  评论(0编辑  收藏  举报