我尝试使用网址预先填充网页上的输入字段。我想让用户自动在下面的网页上输入他们的意见号码:
http://www.directfreight.com.au/ConsignmentStatus.aspx
有些事情:
http://www.directfreight.com.au/ConsignmentStatus.aspx?txtConnote=12345
我认为它与以下隐藏字段有关:
__EVENTTARGET
__EVENTARGUMENT
__EVENTVALIDATION
我尝试了不同的组合,并让页面吐出一些错误。可以这样做吗?
答案 0 :(得分:0)
这是一个解决方案:
$(document).ready(function(){
var myId = document.location.search.replace('?txtConnote=','');
console.log(myId);
$('#inputBox-id').val(myId);
});
输入字段
<input id="inputBox-id" type="text" placeholder="sample">