Does the method attribute of the HTML5 form element only support GET and POST?

it is not valid to set the method property in the form form to DELETE . The default setting is GET .
HTML :

:

is there any way to initiate a DELETE request in HTML ?

Feb.28,2021

Yes, native html forms only support POST and GET modes

but jQuery.ajax () is supported


Native only supports post and get attach W3C link

Menu