如何让虹膜颜色选择器在表格和文本上显示出来? 时间:2013-09-15 作者:Ari 有没有办法让wordpress的默认颜色选择器(iris)通过wordpress api显示在表单和文本上?每次出现颜色选择器框时,它的内联显示都会弄乱插件的管理页面。 2 个回复 SO网友:Ari 我找到了答案。因此,单击“选择颜色”按钮时,无需使用wordpress api使颜色选择器框显示在另一个元素上。只需将此css代码添加到插件/主题管理css文件:.wp-picker-clear, div.wp-picker-holder { z-index: 999 !important; position: absolute !important; } SO网友:Matt Cromwell Here\'s the full documentation on Iris. 在那里,您可以看到,您可以为实际pallette显示在DOM元素中的位置设置一个“目标”。以下是示例代码:Your JS:$(\'.color-picker\').iris({ target: \'#colorpickertarget\' }); Your HTML<form> <input class="color-picker" type="text" /> <input type="submit"></form> <div id="colorpickertarget"></div> 结束 文章导航