我无法直接点击按钮。我想在jQuery中自动化这样的条件。条件是,如果我无法手动点击按钮 - 例如,如果它背后的东西,请不要单击自动化中的按钮。
$(document).ready(function () {
setTimeout(function () {
$("input").click()
}, 1000)
})
div {
position:fixed;
height:100px;
width:100px;
background:transparent;
z-index:10;
border:solid 1px;
top:0px;
left:0px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<input type="button" onclick="alert()">
<div></div>