Javascript-HTML - how to iterate through all the forms on a page?

前端 未结 3 746
暗喜
暗喜 2021-02-15 03:56

How can I iterate through all forms in a document using javascript?

3条回答
  •  忘掉有多难
    2021-02-15 04:49

    Here's an example using the document.forms instead of getElementsByTagName().

    As with the getElementsByTagName() example this goes through all the forms and does a popup alert with the action (instead of name, as it is more likely to be set).

    var formsCollection;
    var r;
    
    formsCollection=document.forms;
    
    for(r=0;r

    This can be condensed down and of course the popup changed to something useful but I have tried to keep it simple.

    And for reference here are some links to more info:

    • Mozilla Developer Network
    • Microsoft
    • w3c
    • And even w3schools

提交回复
热议问题