摘要: 一.常用表单基本取值方法(form1为表单名称,TextBox1为控件ID,以文本框为例,html控件与web服务器控件是一样的) 1.form1.TextBox1.value 2.var txt = document.all.TextBox1; txt.value 3.var txt = document.all["TextBox1"]; txt.value 4.document.getElementById("TextBox1"); 阅读全文
posted @ 2008-03-27 18:13 kantorgong 阅读(2604) 评论(2) 推荐(0) 编辑