ボタンを自動的にクリックしたい
しかし、どのように?
私はこれを試しましたが成功しませんでした
<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();