gpt4 book ai didi

javascript - 修改 HTML Input Form 格式

转载 作者:行者123 更新时间:2023-11-28 04:57:13 25 4
gpt4 key购买 nike

我使用网络爬虫功能下载了一些网页,其中包含一些来自函数的输入,例如:

<input type="text" name="LSTNAM" size="20" maxlength="35">
<input type="text" name="FSTNAM" size="20" maxlength="35">

这里我想知道是否可以使用一些JS方法找到所有的""input type="text"",并修改这些表格而不是仅仅一个一个手动修改。这里是我要达到的目标:

<input type="text" name="LSTNAM" size="20" maxlength="35"     onclick="shwinputtypetext(this);">
<input type="text" name="FSTNAM" size="20" maxlength="35" onclick="shwinputtypetext(this);">

最佳答案

使用这段代码:

let inputs = document.querySelectorAll("input[type=text]");
for(let i = 0; i < inputs.length; i++) {
inputs[i].onclick = function() {
shwinputtypetext(this);
}
}

有关详细信息,请参阅 MDN's documentation on document.querySelectorAll() .

关于javascript - 修改 HTML Input Form 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20847183/

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