在qTip中获取箭头

Tap*_*ose 2 jquery tooltip qtip

如何在qTip中添加箭头。到目前为止,我有

$('.jym').qtip( {
            content: 'Ok', 
            style: { 
                name: 'cream' ,
                border: {
                    width: 3,
                    radius: 8,
                    color: '#6699CC'
                }
            },
            position: {
                corner: {
                    target: 'leftMiddle',
                    tooltip: 'rightMiddle'
                }
            }
        });
Run Code Online (Sandbox Code Playgroud)

生成的工具提示为: 在此处输入图片说明

但是我需要这个:在此处输入图片说明

我浏览了文档,但不了解如何获取此箭头。

非常感谢您的帮助。

Rah*_*hul 5

尝试添加

  style: {
    tip: {
      corner: 'leftMiddle'
    }
Run Code Online (Sandbox Code Playgroud)

到现有的选项列表

http://craigsworks.com/projects/qtip/docs/tutorials/#position