0

有没有一种(简单的)方法可以在没有任何 UI 元素的情况下获得 jQuery mobile 的事件功能?

这是为了升级一组已经编写好的 UI 组件以在移动环境中运行良好。

4

1 回答 1

0

您将不得不使用data-role=page这些,因为这些是触发 JQM 事件的原因。

对于页面中的其余元素,您可以阻止 JQM 使用data-enhance=false标志对它们进行样式设置。

阅读增强部分

来自 JQM 源

// The current version exposes the following virtual events to jQuery bind methods:
// "vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel"

您应该能够像使用 live/on/delegate 的任何其他事件一样绑定到所有这些

于 2012-06-17T13:57:40.847 回答