使用 HTML 中的 form 屬性來設(shè)置元素在 HTML 中所屬的一個(gè)或多個(gè)表單的名稱。
示例
您可以嘗試運(yùn)行以下代碼來實(shí)現(xiàn)form屬性 –
<!DOCTYPE html> <html> <body> <form action = "" method = "get" id = "myform"> SubjectID: <input type = "number" name = "subid"><br> Subject Name: <input type = "text" name = "subname"><br> Total Students: <input type="number" name = "stcount"><br> </form> <button type = "submit" form = "myform" value = "Submit">Click</button> </body> </html>
登錄后復(fù)制
以上就是在HTML中,將元素所屬的表單的名稱設(shè)置為什么?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!