1、动态添加文件框

前台页面关键部分:

<script type="text/javascript">

        //添加一个选项

        function AddFileCtrol() {

            //新建一个Div元素

            var innerDiv = document.createElement("div");

            //添加到Div元素中

            document.getElementById("dv1").appendChild(innerDiv);

            //建立input元素

            var fileCtrol = document.createElement("input");

            //设置元素的名称

            fileCtrol.name = "txtSelections";

            //设置元素的类型

            fileCtrol.type = "text";

            //添加到span元素

            innerDiv.appendChild(fileCtrol);

            //建立input元素

            var btnCtrol = document.createElement("input");

            //设置元素的名称

            btnCtrol.name = "btnDelete";

            //设置元素的类型

            btnCtrol.type = "button";

            //设置元素的显示文字

            btnCtrol.setAttribute("value", "删除")

            //绑定函数到onclick事件

            btnCtrol.onclick = function () { DeleteFileCtrol(this.parentNode) };

            //添加到div元素

            innerDiv.appendChild(btnCtrol);

        }

        //删除一个上传控件

        function DeleteFileCtrol(obj) {

            document.getElementById("dv1").removeChild(obj);

        }
</script>
<table>
<tr>
<td align="left" width="50%">
<input id="btnAttch" type="button" value="添加选项" onclick="AddFileCtrol();" /><br />
<div id="dv1" runat="server">
</div>
</td>
</tr>
</table>

后台操作关键部分:

 protected string CombineSelections()
{
string selections = "";
if (Request.Form.GetValues("txtSelections")!=null)
{
selections = "<Selections>";
string[] str = Request.Form.GetValues("txtSelections");//把每个动态文件框的内容保存在str中
for (int i = ; i < str.Length; i++)
{
selections += "<Selection>(" + (char)(+i)+ ")" + str[i] + "</Selection>";
}
selections += "</Selections>";
}
return selections;
}

1.1、把xml取出来并且动态生成前台文本框:

后台代码如下:

 protected void SplitSelections(string Selections)
{
List<string> selections = new List<string>();//保存每个选项的实际内容
XmlDocument dom = new XmlDocument();
dom.LoadXml(Selections.Trim());//把striong类型的转换成xml类型
XmlElement root = dom.DocumentElement;//取xml文档的根节点
int i = ;
foreach (XmlNode node in root)
{
if (node.Name == "Selection")
{
selections.Add(node.InnerText.Substring());//每个选项格式为,例如:(A)今天下雨。所以从第3个起才是真正内容
//动态生成实际的选项,包括控件。
hfSelections.Value = hfSelections.Value + "<div><input type=\"text\" name=\"txtSelections\" value=\""+selections[i++]+"\"/><input type=\"button\" value=\"删除\" onclick=\"DeleteFileCtrol(this.parentNode)\"/></div>";
}
}
}

3、把数据库里面的数字转换成文字(利用枚举)

前台关键代码如下:

 <td align="center">
<%#Enum.GetName(typeof(Utility.Product.ProductStatusTypeEnum),Eval("ProductStatusType"))%>
</td>

4.获取下拉框的值:

var type = document.getElementById("ddlType").options[document.getElementById("ddlType").selectedIndex].value;//获取下拉框的值

5.获取多个name相同的text的值

  var Selections = document.getElementsByName("txtSelections");

  for (var i = 0; i < Selections.length;i++)
            {
                hasSelections = 1;
                if(Selections[i].value=="")
                {
                    hasSelectionsValues = 0;
                }               
            }

6.js做的保存事件的验证:

 <asp:Button ID="btnSave" runat="server" Text="保存" Width="50px" Height="35px" OnClientClick="return showErr()" OnClick="btnSave_Click" />

7、在Repeater控件中调用带参数的JS(此参数与绑定的数据有关)函数:

前台:

 function DeleteLab(Id) {
if (confirm('确认要删除此题库?')) {
var ids = $("#hfIds").val();
if (ids.indexOf(Id + ",") > -) ids = ids.replace(Id + ",", "");
else if (ids.indexOf("," + Id, "") > -) ids = ids.replace("," + Id, "");
else ids = ids.replace(Id, "");
$("#hfIds").val(ids); $("#btnRefresh").click();
} return false;
}

<td align="center">                           
                            <asp:Button ID="btnDel" runat="server" Text="删 除" OnClientClick=<%# System.String.Format("return DeleteLab('{0}');", Eval("Id")) %> />
</td>

最新文章

  1. Java源代码-迭代器模式
  2. 【POJ 2942】Knights of the Round Table(点双连通分量,二分图染色)
  3. Windows下安装Maven
  4. 泛型容器单元(Generics.Collections)[2]: TQueue&lt;T&gt; 队列列表
  5. C++ 容器一些细节
  6. OpenGL超级宝典第5版&amp;&amp;缓冲区
  7. js修改编辑器内容、修改iframe子页内容
  8. SQL 存储过程 分页 分类: SQL Server 2014-05-16 15:11 449人阅读 评论(0) 收藏
  9. treeview右键添加新节点
  10. ORACLE SQL单行函数(三)【weber出品必属精品】
  11. (转载)HDU4565
  12. Mina airQQ聊天 服务端篇(二)
  13. 电子工程师名片——FAT16文件系统(转)
  14. win32最简单的htmlayout图形界面demo
  15. PHP 判断Header 送出前, 是否有值被送出去: headers_sent()
  16. %f使用时的注意事项
  17. angular 表单验证
  18. css 模拟radio的样式
  19. Python之List列表的循环和切片
  20. AFNetworking 3.0中调用[AFHTTPSessionManager manager]方法导致内存泄漏的解决办法

热门文章

  1. github上虽然已经有实现好的Char RNN
  2. java8List集合根据对象的属性去重
  3. 让你的spring-boot应用日志随心所欲--spring boot日志深入分析
  4. Extending JMeter – Creating Custom Config Element – Property File Reader
  5. POJ1040 Transportation
  6. SaltStack自动化安装配置haproxy的Keepalived
  7. jcmd jmap应用:一个String经典笔试题的验证
  8. python3.6下安装wingIDE破解方法
  9. Java集合——集合框架Set接口
  10. 【Linux】让Ubuntu 支持 GBK等字符集,解决中文乱码