WordPress API是否像BootStrap一样具有模式对话框?
在我的WordPress插件管理页面(通过仪表板访问的插件设置页面)中,我希望出现模式对话框,允许用户编辑设置。
WordPress拥有这些类button
, wp-list-table
, tablenav
, 等等。我在想,可能还有一个模态对话框类,其中包含一些相关的Javascript API函数,以使其出现和消失?
最合适的回答,由SO网友:Pooja Mistry 整理而成
是的,WordPress有模态对话框,它被称为Thickbox,但我不确定它在实现您想要的内容方面有多灵活。以下是代码-
<?php add_thickbox(); ?>
<div id="my-content-id" style="display:none;">
<p>
This is my hidden content! It will appear in ThickBox when the link is clicked.
</p>
</div>
<a href="#TB_inline?width=600&height=550&inlineId=my-content-id" class="thickbox">View my inline content!</a>
有关更多详细信息,请参阅-
https://codex.wordpress.org/Javascript_Reference/ThickBox