javascript動態實現的表單提交效果程式碼例項

admin發表於2017-03-31

本章節分享一段程式碼例項,它完全是由javascript動態實現的表單提交效果。

首先直接看程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script type="text/javascript"> 
window.onload=function(){
  var obt=document.getElementById("bt");
  var obox=document.getElementById("box");
  var oform=document.createElement("form");
  var oinput=document.createElement("input");
  oform.method="post";
  oform.action="index.aspx";
  oinput.value="softwhy.com";
   
  obox.appendChild(oform);
  oform.appendChild(oinput);
   
  obt.onclick=function(){
    oform.submit();
  }
}
</script>
</head>
<body>
<div id="box"></div>
<input type="button" id="bt" value="檢視效果"/>
</body>
</html>

相關文章