我在网页中做一个 goto 链接,旁边有一个输入文本。goto 链接同时出现在网页的顶部和底部。
<div class="gotopage">
goto page<input type="text" class="page_i"/>
<a href="###" class="Goto">Go</a>
</div>
在 jquery 中,我需要在链接旁边获取文本:
$('a.Goto').live('click',function(){
window.location.href = ...;
});
如何获取文本值,它不应该是 id,因为 id 出现了两次。