抓取链接到html文本框

时间:2017-04-15 09:05:02

标签: javascript jquery html protocols

我有这个链接 - http://am3yar0ra.in/test.html?a=52.472565,13.457407,Name

现在我需要的是阅读我的test.html文件并将 a = 52.472565,13.457407,名称添加到文本框中并自动更新值。

这样它就可以通过跟踪test.html中的 Click Me !! 来检测URL协议

抱歉我的英语不好。会有很大的帮助。

mousemove

找到了我想要的答案。它是用PHP做的..

<center><font size="40"><b>Test</b></font></center>


<br><br><br>

<a href="test://Name/52.472565,13.457407">Click Me!!</a><br>

<br>Mouse Over Select Name: <b></b>
<br><input type="text" style="height:20px;line-height:10px;color:green;" onclick="this.setSelectionRange(0, this.value.length);" size="25" value="Name" readonly="">

<br>Mouse Over Select Lat &amp; Lon: <b></b>
<br><input type="text" style="height:20px;line-height:10px;color:green;" onclick="this.setSelectionRange(0, this.value.length);" size="25" value="52.472565,13.457407" readonly="">

<br>Mouse over to Select Data: <b></b>
<br><input type="text" style="height:20px;line-height:10px;color:green;" onclick="this.setSelectionRange(0, this.value.length);" size="45" value="test://Name/52.472565,13.457407" readonly="">

1 个答案:

答案 0 :(得分:0)

试试这个:

setInterval(change,1000/30);
function change() {
  var x = document.getElementById('change');
  x.setAttribute("onclick","location.href='test://Name/52.472565,13.457407'");
}