HTML页面如何象asp一样接受参数

页面

<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>

时间: 2024-09-28 19:35:15

HTML页面如何象asp一样接受参数的相关文章

HTML页面如何象ASP一样接受参数_javascript技巧

复制代码 代码如下: <script language="JavaScript" type="text/javascript"> var pos, str, para, parastr, tempstr1; tempstr = ""; str = window.location.href; pos = str.indexOf("?")parastr = str.substring(pos + 1); documen

页面数据传输-asp.net页面获取post body中的参数

问题描述 asp.net页面获取post body中的参数 页面上获取对方传过来的参数,传输方式对方post提交,不是表单的形式. 我使用Request.InputStream获取传入的 HTTP 主体(body)的内容,获取之后将参数转换成一个字符串类似:Id=1101111110&phone=15011167121&name=测试一,这种形式,我拆分获取键值 不明白的地方是: 请求方传过来的时候utf-8编码,encode,我接收到之后要不要解码,怎么解码? 谢谢! 解决方案 应该不涉

.htm页面如何接受参数?

问题描述 如何在一个框架的.htm中接受参数,.htm中有左右两个页面,并把参数传到他的这两个页面中. 解决方案 解决方案二:[摘要]他解决了类似于"http://localhost/a.html?id=123&type=1"像上面的一串URL后面所传递的参数数据截取出来!非常有用[全文]js代码<scriptlanguage=javascript>document.write(document.location.search);document.write(&qu

json-关于asp josn 接到参数 执行 sql语句 报错问题

问题描述 关于asp josn 接到参数 执行 sql语句 报错问题 <%Dim memberSet member = jsObject() dim dbconnectionuplistDBPathSQLSortLboundUboundDim id=request(""jsoncallback"")set dbconnection=Server.CreateObject(""ADODB.Connection"") DBP

struts2-Struts2 &amp;amp;lt;s:action&amp;amp;gt;能接受参数,但是不能使用Action

问题描述 Struts2 <s:action>能接受参数,但是不能使用Action 没有办法执行下去" int sid_int=Integer.valueOf(sid);"这部分 why? 思路:想在 lookstock.jsp页面上显示出 某一张采购单 和 这张采购单的明细(这里两张表) 通过页面上的 来获取到这张采购单的明细信息.怎么样我也没有办法执行下去后面.总显示不到明细. StockdetailAction package ssh2.jxc.wjr.action;

参数传递-Android如何给asp网页传递参数?

问题描述 Android如何给asp网页传递参数? 我想做一个学校图书馆的手机客户端,图书馆网页http://222.24.94.225/gdlisnet/ReaderLogin.aspx登陆时需选择登录方式,学号和密码.然后登陆成功跳转到http://222.24.94.225/gdlisnet/ReaderTable.aspx.我使用一下传递参数, String url = "http://222.24.94.225/gdlisnet/ReaderLogin.aspx?"; Htt

在JSP页面获取后台action封装的参数,这个参数里面又含有两个对象,二层引用,报错

问题描述 在JSP页面获取后台action封装的参数,这个参数里面又含有两个对象,二层引用,报错 javax.el.PropertyNotFoundException: Property 'userAccount' not found on type java.lang.String 上面是报错信息, 下面是JSP页面: 用户名: ${commentlist.userAccount.userName } 职业: ${commentlist.userAccount.job } ${commentl

ASP调用带参数的MSSQL存储过程,并返回临时表记录集

前些天,阿里西西web团队(Alixixi.com)在开发一个系统平台时,需要通过存储过程调用多个表的几个字段,合并到一个临时表中,并进行排序返回给ASP调用. 下面,我把经验分享出来: 1.存储过程部分: 以下是存储过程部分:CREATE PROCEDURE [dbo].[alixixi] @sNum int, @sOrder varchar(20)  AS SET nocount on create table #btable (id int,channelid int,classid in

asp 获取地址栏参数代码

asp 获取地址栏参数代码 ============================================ 函数名:JoinChar 作  用:向地址中加入 ? 或 & 参  数:strUrl  ----网址 返回值:加了 ? 或 & 的网址 pos=InStr(1,"abcdefg","cd") 则pos会返回3表示查找到并且位置为第三个字符开始. 这就是"查找"的实现,而"查找下一个"功能的 实现