What is the difference between open( ) and send ( ) methods of XMLHttpRequest object?

前端 未结 3 774
醉梦人生
醉梦人生 2021-02-20 06:06

XMLHttpRequest object:

open ( , , )
send () <

3条回答
  •  [愿得一人]
    2021-02-20 06:34

    open() does not open the connection; it only configures the request, but the network activity only starts with the call of send ()

提交回复
热议问题