我对 jQuery 和点击功能有疑问。我想从“ http://gdakram.github.com/JQuery-Tooltip-Plugin ”编辑一个语音气泡插件。在这里您可以看到,如果您将鼠标悬停在按钮上,它会打开一个对话气泡。我想要这个功能点击,而不是鼠标悬停。我的问题是,这个脚本对我来说太复杂了……这是网站的一部分(js-data):
(function($) {
$.fn.tooltip = function(settings) {
// Configuration setup
config = {
'dialog_content_selector' : 'div.tooltip_description',
'animation_distance' : 50,
'opacity' : 0.85,*/
'arrow_left_offset' : 70,
'arrow_top_offset' : 50,
'arrow_height' : 20,
'arrow_width' : 20,
'animation_duration_ms' : 300,
**'event_in':'click',**
'hover_delay' : 0,
**'event_out': 'click',**
};
事件输入和事件输出不能一起工作......有什么想法,我能做什么?