表單的動作通常是指提交後運行的腳本。我看到一個代碼form action="/"
,我無法找到它的去向。有人請解釋我。form action =「/」是什麼意思?
2
A
回答
6
1
這意味着指向該網站的頁面。
1
它將表單發送到網站的索引頁面。 (通常是index.php,但通常是index.html或main.html)
0
將其視爲目錄。 /這意味着你的應用程序將在第一個目錄中搜索index.php文件。
相關問題
- 1. form action =「?login」:問號是什麼意思?
- 2. Action =「#」是什麼意思?
- 3. Action <Action>是什麼意思?
- 4. action =「/ echo/html /」是什麼意思?
- 5. 是什麼意思:是什麼意思?
- 6. form action =「」和form action =「。」有什麼區別?
- 7. 什麼是<form action =「#」>和<form method =「post」action =「#>做什麼?
- 8. html表單中的「action ='?'」是什麼意思?
- 9. ASP.NET MVC中,表單標記的'action'部分是什麼意思?
- 10. 什麼是()=> {}是什麼意思?
- 11. %{}是什麼意思?
- 12. '#'是什麼意思?
- 13. 「?」是什麼意思?
- 14. #{...}是什麼意思?
- 15. || =是什麼意思?
- 16. @是什麼意思
- 17. $$ $$是什麼意思?
- 18. `/ * @`是什麼意思?
- 19. 「=」是什麼意思
- 20. + =是什麼意思?
- 21. {..} [..]是什麼意思?
- 22. 什麼是:!:意思?
- 23. @ []是什麼意思?
- 24. 什麼是「||」意思?
- 25. /([^.]*)\.(.*)/是什麼意思?
- 26. &**是什麼意思?
- 27. @(...)是什麼意思?
- 28. &@是什麼意思?
- 29. 「\\。\」,「\ ?? \」,「\\?\」,「\\」是什麼意思?
- 30. &=是什麼意思?
它將表單數據發送到表單所在網站的索引頁或主頁。 在這裏,[自己試試](http://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_input_type) –