ASPの処理はJavascriptで動的に追加されたフォーム要素データのコードです.
1917 ワード
前の記事ではフォーム要素の動的追加について述べましたが、今回はどのようにしてこれらの動的追加フォーム要素からのデータを処理しますか?どのようにフォーム要素を動的に追加するかは、ここで詳しく説明しません.前の文章を見ても分かりません./www.jb 51.net/html/200711/23/12856.hmの下にフォーム要素を動的に追加するページコードがあります.
BlueShine
<br>function AddElement(mytype){
<br>var mytype,TemO=document.getElementById("add");
<br>var newInput = document.createElement("input");
<br>newInput.type=mytype;
<br>newInput.name="input1";// , !
<br>TemO.appendChild(newInput);
<br>var newline= document.createElement("br");
<br>TemO.appendChild(newline);
<br>}
<br>
データ処理ページコードは以下の通りです.
html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
dim data,arr,n
data=Trim(Request.Form("input1"))' name
arr=split(data,",")' Split !
Response.Write(" :")
Response.Write(data)
Response.Write("
")
Response.Write("
")
Response.Write(" Split :")
Response.Write("
")
for n= 0 to ubound(arr)
Response.Write(arr(n))
Response.Write("
")
Next
%>