我想知道如何单击具有此属性的噩梦按钮。
<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 和类。