使用XMLHttpRequest发送POST数据
我想在JavaScript中使用XMLHttpRequest发送一些数据。
假设我在HTML中有以下表单:
<form name="inputform" action="somewhere" method="post"> <input type="hidden" value="person" name="user"> <input type="hidden" value="password" name="pwd"> <input type="hidden" value="place" name="organization"> <input type="hidden" value="key" name="requiredkey"></form>
如何在JavaScript中使用XMLHttpRequest编写等效代码?
慕田峪4524236
三国纷争