gpt4 book ai didi

javascript - 选择一个项目或链接

转载 作者:行者123 更新时间:2023-11-28 12:53:50 25 4
gpt4 key购买 nike

有时这个脚本不起作用,我在 php 文件中使用它

    <script type="text/javascript">
window.onload = function () {
var input = document.body.getElementById("thisActive");
input.focus();
input.select();
}
</script>

这里是工作 http://cartoon.22web.org/watch/s-watch/index.php

页面加载完成后,脚本指定页面的链接==============================

但这里使用多个页面 http://wassim-al-ahmad.22web.org

未选择的页面已选择

最佳答案

只需将 window 转换为 document,如下所示:

document.onload = function () {
var input = document.body.getElementById("thisActive");
input.focus();
input.select();
}

JQuery 版本

$(document).ready(function () {
...
});

关于javascript - 选择一个项目或链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57784797/

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