我想知道如何点击具有此属性的梦魇按钮。
<a class="auth_button leftbtn" href="javascript:SubmitAuthCode( 'enter a friendly name here' );">
<h3>Submit</h3>
<h5>my special access code</h5>
</a>
我尝试使用这样的click()方法:
.click('.auth_button leftbtn');
但它没有点击它(可能是因为它不是“真正的”按钮 - 可能是错的)
任何想法为什么?或者我该怎么做呢
我可能会发现为什么.click()不起作用:
<div class="modal_buttons" id="auth_buttonsets">
<div class="auth_buttonset" id="auth_buttonset_entercode" style="display: none;">
<a class="auth_button leftbtn" href="javascript:SubmitAuthCode( 'enter a friendly name here' );">
<h3>Submit</h3>
<h5>my special access code</h5>
</a>
<a class="auth_button" href="javascript:SetEmailAuthModalState( 'checkspam' );">
<h3>What message?</h3>
<h5>I don't have any message from Steam Support...</h5>
</a>
<div style="clear: left;"></div>
</div>
<div class="auth_buttonset" id="auth_buttonset_checkspam" style="display: none;">
<a class="auth_button leftbtn" href="javascript:SubmitAuthCode( 'enter a friendly name here' );">
<h3>Found it!</h3>
<h5>and I've entered my special access code above</h5>
</a>
<a class="auth_button" href="javascript:SetEmailAuthModalState( 'help' );">
<h3>No luck still...</h3>
<h5>I don't have any message from Steam Support...</h5>
</a>
<div style="clear: left;"></div>
</div>
</div>
我瞄准的按钮位于div id=auth_buttonset_entercode
中,因为有多个按钮具有相同的ID,但不在同一个div中。现在我不知道如何在同一个选择器中选择div然后选择类。
答案 0 :(得分:2)
将其更改为
.click('#auth_buttonset_entercode .auth_button.leftbtn');
因此它将选择两个类的元素。