7. What URL will be requested if the user immediately clicks submit? 1 2 3 4 form action="https://example.com/form/searc
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
7. What URL will be requested if the user immediately clicks submit? 1 2 3 4 form action="https://example.com/form/searc
https://example.com/form/search" method="GET" <input id="search-box" type="text" name="search-keyword" value="Default"> <input type="submit" value="OK"> </form> https://example.com/form/search?search-keyword=Default O https://example.com/form/search https://example.com/form/search?name=se ... ue=Default https://example.com/form/search?search-keyword="" O https://example.com/form/search?search-keyword Incorrect Name is just the variable name, value is the variable's initial value.
7. What URL will be requested if the user immediately clicks submit? 1 2 3 4 form action="