window.open()跟踪用户输入

时间:2019-01-29 16:12:34

标签: javascript html

是否可以查看(对于google.com以外的任何人-网站所有者,服务器所有者等)表单中插入了哪些输入,以及生成了哪个链接?

<form>
  <input type="text" id="id_1" size="20" placeholder="user input">        
  <input type="submit" value="GO" 
    onclick="window.open('https://google.com/'+ 
    document.getElementById('id_1').value); return false;">             
</form>     

除了google.com之外,任何人都可以看到用户输入的内容或用户打开的链接吗?

0 个答案:

没有答案
相关问题