jQTouch后退按钮
我正在使用 jQTouch 构建一个类似 UITableView 的界面。但是,我尝试通过使用 class="back"
创建
节点来插入按钮,但我得到的只是一个风格化的、朝左的工具栏区域中的按钮(我已禁用)。有谁知道如何获取带有 class="back"
的
元素而不用它如上所述风格化?I'm using jQTouch to build a UITableView-like interface. However, I'm trying to insert a button with by creating an <li>
node with class="back"
but all I get is a stylized, left-facing button that is in the toolbar area (that I've disabled.)
Does anyone know how to get an <li>
element with class="back"
without it being stylized as described above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
刚刚注意到在 JQtouch 的第 161 版中,css 类“goback”处理了这个问题——与“back”的作用相同,只是不应用内置样式。
Just noticed in rev 161 of JQtouch that the css class "goback" handles this — does the same as "back" except doesn't apply the built-in styling.
被定义为 jQTouch 样式的一部分,并且它具有特定的含义。通过在列表项中使用它,您将继承这些类值。
DDaviesBrackett 建议您为班级使用不同的名称
is defined as part of jQTouch styling and it has a specific meaning. By using it in to list item you are inheriting those class values.
What DDaviesBrackett is suggesting is that you use a different name for you class
我通过为我的
元素调用
onclicked="jQT.goBack();"
解决了该问题。I fixed the problem by just calling an
onclicked="jQT.goBack();"
for my<li>
element.我遇到了一个问题,在类似的情况下 back 无法正常工作,这是我的修复:
// comment to allowed an edit
I was having a problem where back wasn't working correctly in a similar scenario, this was my fix:
// comment to allow an edit