这些形式属性意味着什么?

时间:2011-05-18 03:52:56

标签: php html

<form method="get" action="index.php" target="abc" name="SearchForm" id="SearchForm">

点击submit后,我们转到index.php,我们可以使用GET方法访问输入的信息。 targetnameid在这里意味着什么?他们做了什么?

2 个答案:

答案 0 :(得分:1)

Google快速搜索会回答这些问题。

http://www.w3schools.com/tags/tag_form.asp

答案 1 :(得分:0)

<form 
    method="get"        -- submit method (post|get)
    action="index.php"  -- page to submit form to
    target="abc"        -- frame id to target. ex: <iframe id="abc" src="myframe.html">
    name="SearchForm"   -- name of the form, used with client-side scripting
    id="SearchForm"     -- CSS id of the form. ex: #SearchForm { font-size: large; }
                           - used for client-side scripting (javascript)
                           - must be unique. <div id="abc"><p id="abc"> = invalid
/>