我有一个按以下方式构造的 HTML 文档:
<section id="page1" data-role="page">
<a href="#" id="next-section" class="next-section" style=" cursor:e-resize"><div class="arearight" alt="go right" ></div></a>
<a href="#" id="prev-section" class="prev-section" style=" cursor:w-resize"><div class="arealeft" alt="go left" ></div></a>
...
</section>
<!-- more sections -->
我有以下代码来遍历它
$(":jqmData(role='page')").each(function() {
$(this).bind("swipeleft" goLeft); //goLeft and goRight are defined and working
$(this).bind("swipeleft", goRight);
//...
}
滑动工作正常,但我想绑定到next-section
andprev-section
一个click
调用goLeft
and的行为goRight
,但我不知道如何通过$(this)
对象访问它们。有人知道如何找到他们吗?
谢谢