我想自动点击按钮
但是怎么做?
我试过这个但没有成功
<html>
<head>
<script>
$(function(){
$("a").click(function(){
alert("hillo");
});
});
$("a").click();
</script>
</head>
<body>
<a href="http://google.com">google</a>
</body>
</html>
这口井只用过也没成功
$("a").click();