动态增加 input type="text" runat="server",怎样获取ID

问题描述

<scripttype="text/javascript">functionaddFileControl(ID){varstr='<INPUTstyle="border-right:silver1pxsolid;border-top:silver1pxsolid;border-left:silver1pxsolid;width:180px;border-bottom:silver1pxsolid;height:17px"type="text"size="20"maxlength="20"runat="server"class="stTextBox">&nbsp;<INPUTstyle="WIDTH:350px;HEIGHT:22px"type="file"size="40"runat="server"class="stTextBox"><br/>'document.getElementById(ID).insertAdjacentHTML("beforeEnd",str);}</script><divid="FileCollection2"style="text-align:center;">选取上传文件<inputclass="stTextBox"title="上传多个文件"style="WIDTH:60px;HEIGHT:20px"onclick="addFileControl('FileCollection2')"type="button"value="增加文件"id="iptFileGzdt"/></div>onclick="addFileControl('FileCollection2')后怎样读取functionaddFileControl(ID)中<INPUTstyle="border-right:silver1pxsolid;border-top:silver1pxsolid;border-left:silver1pxsolid;width:180px;border-bottom:silver1pxsolid;height:17px"type="text"size="20"maxlength="20"runat="server"class="stTextBox">的值

解决方案

解决方案二:
HttpFileCollectionfiles=HttpContext.Current.Request.Files;for(inti=0;i<files.count;i++){}
解决方案三:
2楼你没看清问题,不是files,是text的值
解决方案四:
大家帮帮忙OK!
解决方案五:
客户端脚本无法添加服务器端控件,lz要理解服务器端控件其实是运行在服务器端的,客户端只是获得它的运行结果html+js所以,你只要添加input即可,而不是"inputrunat=server",其次,这个input赋予name属性,服务器端用request.Form["inputname"]
解决方案六:
谢谢楼上,但问什么同样是服务器端增加<INPUTstyle="WIDTH:350px;HEIGHT:22px"type="file"size="40"runat="server"class="stTextBox">后可以通过文件遍历读到?

时间: 2024-10-29 15:59:06

动态增加 input type=&amp;quot;text&amp;quot; runat=&amp;quot;server&amp;quot;,怎样获取ID的相关文章

jQuery动态添加 input type=file的实现代码_jquery

复制代码 代码如下: <form id="fileForm" action="" method="post" enctype="multipart/form-data"> <tr> <td> <input type="file" name="file"><input type="button" id="a

动态增加input与表格行代码

提示:您可以先修改部分代码再运行 序号 用户姓名 电子邮箱 固定电话 移动手机 公司名称

jquery 动态增加,减少input表单的简单方法(必看)_jquery

html代码如下 <html> <tr><button style="margin-left:10px" class="add_field_button btn">Add</button></tr> <tbody class="input_fields_wrap"></tbody> </html> js代码如下 <script> var m

js给select动态增加数据并由php接受保存到数据

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.111cn.net/1999/xhtml"> <head> <meta http-equiv="conte

jQuery实现立体式数字动态增加(animate方法)_jquery

1.HTML结构 <div class="integral">已有<span class="ii"></span>积分</div> 2.js <script type="text/javascript" src="js/jquery.js" ></script> <script type="text/javascript" src

jquery动态增加删减表格行特效_jquery

基于jQuery表格增加删除代码是一款动态增加删减表格行特效代码.分享给大家供大家参考.具体如下: 运行效果截图如下: 具体代码如下: html代码: <div style="width:720px;margin:20px auto;"> <table id="tab11" style="display: none"> <tbody> <tr> <td height="30"

Javascript 动态改变imput type属性_基础知识

Javascript 动态改变imput type属性: 代码实现: <script type="text/javascript"> function shoppw(thebox){ var ps = document.getElementById('ps'); var pass = document.getElementById('pass'); ps.removeChild(pass); var psImput = document.createElement(&quo

动态增加表单元素

<html><head><title>Untitled Document</title><meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head><body bgcolor="#FFFFFF" text="#000000"><table>  

ajax-预约操作时,动态获取id参数

问题描述 预约操作时,动态获取id参数 预约时,信息已经动态读取出来了,并以表格形式在前端显示了.那么如何获取id并将其换入后端进行处理实现预约 解决方案 http://blog.csdn.net/zk437092645/article/details/9340331