5

这是我的代码的人为示例:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>    
        <title></title>
        <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
        <link rel="stylesheet" type="text/css" href=".css"/>
    </head>
    <body>
        <div>
            <a href="http://www.google.com" class="foo">YahOO</a>
        </div>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
       <script type="text/javascript">
            $("document").ready(function() {
                $("#foo").trigger('click');
            });
        </script>
    </body>
</html>

我希望在页面加载后立即触发链接。以上不起作用,不正确?怎么可能做到这一点?

4

3 回答 3

17

您在元素上设置了类foo,而不是id您需要使用.foo. 此外,正如@JusticeErolin 指出的那样,文档就绪处理程序不需要引号。尝试这个:

$(document).ready(function() {
    $(".foo").trigger('click');
});

作为参考,$("#foo")将寻找一个带有 的元素id="foo",在您的页面中应该只有一个元素,因为 id 应该是唯一的。

$(".foo")将查找带有 的元素class="foo",您可以拥有任意数量的元素。

于 2012-04-03T19:59:57.020 回答
1

我尝试了很多选项,但我找到了一个对我有用的选项:

$(document).ready(function(){ 
     $('#upload-file')[0].click(function(){
     }); 
});
于 2017-04-14T10:48:28.880 回答
-2

您必须等到控件加载到页面上

将此添加到页面底部

<script>
$(document).ready(function(e){
$("#whateverElement").click();
});
</script>
于 2014-11-15T15:36:47.630 回答