我想从这个函数返回对象,如
function sampleCode(){
new somewhere.api({
var fullAddr = '';
(adding some address using api)
(it reutrns json data)
})open();
}
<input type="text" id="x" placeholder="someone's address">
<input type="button" onclick="sampleCode()" value="popupFind">
<input type="text" id="x" placeholder="someone's address2">
<input type="button" onclick="sampleCode()" value="popupFind">
我使用API获取地址,输入值。 也许可以使用getelementbyid并使fucntion每次都不同,但是如果有很多输入呢?
如何返回对象并单独使用而不重复?
THX。
答案 0 :(得分:0)
我相信你问的是如何提出http
请求。如果您使用的是纯JavaScript,则可以在Javascript HTTP GET request找到该信息。如果您使用的是jQuery,那么可以在jQuery HTTP GET request找到相关信息。我建议使用jQuery,因为它更紧凑,更容易理解。
它返回一个json
对象,由服务器端代码处理。您需要编写可以处理http
get请求的服务器代码,然后返回json
对象。