我有一个jqueryui模态形式。我使用jquery cluetip工具提示插件,但工具提示在模态窗口窗体上没有正常工作..这是屏幕截图...
Star显示工具提示必须在那里的位置,箭头显示工具提示显示的位置..任何人都可以告诉我如何解决这个问题.. Screen Shot http://img15.imageshack.us/img15/2808/78241472.png
编辑:有人能告诉我如何增加线索提示工具提示的z索引......
答案 0 :(得分:1)
当调用cluetip时,给它一个更高的z-index对话框(默认为1001),如下所示:
$(selector).cluetip({cluezIndex: '1020'});
答案 1 :(得分:0)
cluetip插件有cluetipClass
你可以提供。用它来设置一个具有你想要的z索引的类。
$('selector').cluetip({ splitTitle: '|', arrows: true, dropShadow: true,
cluetipClass: 'classWithHighZIndex', showTitle: false,
onActivate: activateFunction});
答案 2 :(得分:0)
我知道了...... thnsk朋友
$.fn.cluetip.defaults = { // set up default options
width: 275, // The width of the clueTip
height: 'auto', // The height of the clueTip
cluezIndex: 1970, // Sets the z-index style property of the clueTip
positionBy: 'auto', // Sets the type of positioning: 'auto', 'mouse','bottomTop', 'fixed'
topOffset: 15, // Number of px to offset clueTip from top of invoking element
leftOffset: 15,