gpt4 book ai didi

javascript - 通过 URL 预填充网页字段

转载 作者:行者123 更新时间:2023-11-28 07:00:03 24 4
gpt4 key购买 nike

我正在尝试仅使用 URL 来预先填充网页上的输入字段。我希望用户自动将其connote编号输入到以下网页中:

http://www.directfreight.com.au/ConsignmentStatus.aspx

大致如下:

http://www.directfreight.com.au/ConsignmentStatus.aspx?txtConnote=12345

我认为这与以下隐藏字段有关:

__EVENTTARGET

__EVENTARGUMENT

__EVENTVALIDATION

我尝试了不同的组合,并且页面返回了一些错误。这可以吗?

最佳答案

这是一个解决方案:

$(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">

关于javascript - 通过 URL 预填充网页字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32250516/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com