温泉UI,如何使用isShow()方法
Onsen UI, how to use isShow() Method
我正在创建一个非常简单的应用程序,我正在使用 Onsen UI 和纯粹的 JavaScript(没有 Angular、React 或 Vue)。这是第一次使用这个框架,但到目前为止看起来非常简单直接,除了 isShow()
方法。我有一个使用以下命令打开的对话框:
document.getElementById(id).show({ animation: "fade" });
但现在我需要知道如何检查对话框是否打开。我认为使用这样的东西会起作用:
console.log(document.getElementById(id).isShown());
但我得到一个 document.getElementById(...).isShown is not a function
错误 message.The 我唯一能找到的是温泉旅馆 UI 文档中所说的内容:isShown() Returns whether the popover is visible or not.
如何确定对话框 <ons-dialog>
元素在 Onsen UI 中是否打开(可见)?
isShown()
方法是温泉 UI v1 的一部分。对于 v2,您可以访问 visible
属性 并获得相同的值。 Docs here.
我正在创建一个非常简单的应用程序,我正在使用 Onsen UI 和纯粹的 JavaScript(没有 Angular、React 或 Vue)。这是第一次使用这个框架,但到目前为止看起来非常简单直接,除了 isShow()
方法。我有一个使用以下命令打开的对话框:
document.getElementById(id).show({ animation: "fade" });
但现在我需要知道如何检查对话框是否打开。我认为使用这样的东西会起作用:
console.log(document.getElementById(id).isShown());
但我得到一个 document.getElementById(...).isShown is not a function
错误 message.The 我唯一能找到的是温泉旅馆 UI 文档中所说的内容:isShown() Returns whether the popover is visible or not.
如何确定对话框 <ons-dialog>
元素在 Onsen UI 中是否打开(可见)?
isShown()
方法是温泉 UI v1 的一部分。对于 v2,您可以访问 visible
属性 并获得相同的值。 Docs here.