标记预览切换

发布于 2024-10-07 22:30:24 字数 105 浏览 6 评论 0原文

我想在标记集中添加一个按钮,通过它我可以切换预览,也就是说,如果我单击预览按钮,我可以看到预览,如果我想隐藏预览 - 我可以使用该按钮隐藏它。我已经用谷歌搜索过这个但仍然没有结果。知道该怎么做吗?

I want to add a button to a markitup set by which i can toggle preview, that is if i click on preview button i can see the preview, if i want to hide the preview - i can hide it by using that button. I've googleed for this but still no result. Any idea how to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟燃烟灭 2024-10-14 22:30:24

没关系,我已经弄清楚了。我添加了一个按钮来隐藏它,代码如下 -

{name:'Hide Preview', call: function (markitUp){ miu.hidepreview()}, className:'hidepreview'}

其中 hidepreview() 作为我的自定义函数。我定义这个函数如下

miu = {
hidepreview : function(){
    $('.markItUpPreviewFrame').remove();
}

}

它对我有用。

Nevermind, i've figured it out. I've added a button to hide it, code as below -

{name:'Hide Preview', call: function (markitUp){ miu.hidepreview()}, className:'hidepreview'}

Where hidepreview() as my custom function. I defined this function as below

miu = {
hidepreview : function(){
    $('.markItUpPreviewFrame').remove();
}

}

It works for me.

浅语花开 2024-10-14 22:30:24

您可以通过按住 Alt 键并单击“预览”按钮来完成此操作 - 这将关闭打开的预览窗口。

它位于 Preview() 函数的 else if 语句中:

} else if (altKey === true) {
    if (iFrame) {
        iFrame.remove();
    } else {
        previewWindow.close();
    }
    previewWindow = iFrame = false;
}

You can do it by holding the Alt key and clicking on the Preview button - this will close the opened preview window.

It's in the else if statement of the preview() function:

} else if (altKey === true) {
    if (iFrame) {
        iFrame.remove();
    } else {
        previewWindow.close();
    }
    previewWindow = iFrame = false;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文