我想建立一個瀏覽器擴展與關鍵功能,包括從HTML頁面獲取文本輸入,並用URL連接並從該連接的URL獲取JSON。嗨我怎麼能從一個URL使用JavaScript獲取JSON
我想知道如何使用JavaScript從一個URL獲取json到一個變量。
這是獲取用戶插入文本的html腳本。
<html>
<body>
<input type="text" id="search" name="Name" maxlength="10" class="searchField" autocomplete="off" title="" ><br>
</p>
</form>
<p align="center">
<button type="button" id="srchbutton" style="background-color:Thistle;margin-left:auto;margin-right:auto;display:block;margin-top:22%;margin-bottom:%"> Search</button>
</p>
<script language="javascript" type="text/javascript" src="thanq.js">
var button= document.getElementById('srchbutton');
button.onclick= linkprocess();
console.log("hi there");
</script>
</body>
</html>
這是我嘗試從URL訪問json的JavaScript。
var oldlink='URL';
var newlink;
function linkprocess(links){
var text= document.getElementById('search');
newlink=oldlink+text;
GetJson(newlink);
console.log(newlink);
}
你需要什麼瀏覽器支持? –
試試這個'$ .getJSON('newlink',function(data){ console.log(data) })' –
使用jQuery的'$ .getJSON()'或學習原始的'XMLHttpRequest's,這就是我建議你是否在學習。 – PHPglue