我有一个包含以下文本字段的HTML文件
<div>
<div class="form-group" method="GET">
<label for="searchKey">Search Key (username):</label>
<input type="text" class="form-control" id="username" placeholder="username">
</div>
</div>
我想通过从页面URL提取用户名的值来自动在文本字段中填充用户名。 页面的URL格式-
https://hostname.domain.com:20500/BIO/index.html?CALLTYPE=GET_TWOFACTOR_AUTH_PAGE&LCLANG=INFENG&USER_ID=vishal5364&IDDtls=0|vishal5364|0|1
其中 vishal5364 是需要自动填充的用户名。
最简单的方法是什么