码迷,mamicode.com
首页 > Web开发 > 详细

如何使用HTML传递和接收参数值

时间:2014-10-17 17:03:09      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:des   io   os   ar   使用   java   for   sp   文件   

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus?">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
  <script language="JavaScript">
var pos,str,para,parastr,tempstr1;
tempstr="";
str = window.location.href;
pos = str.indexOf("?")
parastr = str.substring(pos+1);
document.write("<br>文件路径:"+str);
if (pos>0){
 document.write("<br>所有参数:"+parastr);
 }
else
 {
 document.write ("无参数");
 }


if (str.indexOf("&")>0){
 para = parastr.split("&");
 for(i=0;i<para.length;i++)
 {
 tempstr1 = para[i];
 
 pos = tempstr1.indexOf("=");
 //document.write (tempstr1.substring(0,pos));
 document.write ("<br>参数"+i+":"+tempstr1.substring(0,pos));
 document.write ("等于:"+tempstr1.substring(pos+1));
 }
 }
</script>
 </head>
 <body>
  
 </body>
</html>



如何使用HTML传递和接收参数值

标签:des   io   os   ar   使用   java   for   sp   文件   

原文地址:http://my.oschina.net/u/1266171/blog/333326

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!