JavaScript精简学习4:表单

80酷酷网    80kuku.com

  javascript

43 表单构成
1: <form method=”post” action=”target.html” name=”thisForm”>
2: <input type=”text” name=”myText”>
3: <select name=”mySelect”>
4: <option value=”1”>First Choice</option>
5: <option value=”2”>Second Choice</option>
6: </select>
7:

8: <input type=”submit” value=”Submit Me”>
9: </form>

44 访问表单中的文本框内容
1: <form name=”myForm”>
2: <input type=”text” name=”myText”>
3: </form>
4: <a href='#' >
19: Enter Some Text: <input type=text name=myField><input type=submit>
20: </form>

上面的encryptForm方法把表单中的数据转换为编码,在提交表单之前完成了简单的表单数据加密~



分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: