有一个API,需要用表单pos到一个地址,然后获取返回的数据。
<form action="https://dnsapi.cn/Record.List" method="post"> <input type="text" value="登陆邮箱地址" name="login_email"> <input type="passwd" value="登陆密码" name="login_password"> <input type="text" value="ID" name="format"> <input type="submit"> <form>
需要用ajax提交,返回的内容都在JavaScript变量中
你可以使用jquery的ajax函数来实现, 文档在这是http://api.jquery.com/jQuery.ajax/
你如果是想在PHP端直接实现的话,你可以采用curl、socket等去模拟提交后抓取返回值。
你如果是想在PHP端直接实现的话,你可以采用curl、socket等去模拟提交后抓取返回值。
$.ajax({
type: "POST",
url:"https://dnsapi.cn/Record.List",
data: $("#formid").serialize(),
success: function(data){
alert(data);
}
});