Home  >  Article  >  Web Front-end  >  jQuery EasyUI Tutorial-Tooltip (prompt box)

jQuery EasyUI Tutorial-Tooltip (prompt box)

黄舟
黄舟Original
2016-12-27 16:48:241981browse

The previous article introduced you to the jQuery EasyUI tutorial-ProgressBar (progress bar). This component is commonly used by front-end developers at work. Next, I will introduce you to the jQuery-Tooltip (prompt box) component. , also very useful in the work process.

This article will give you a detailed introduction to the use case of jQuery-Tooltip (prompt box), and through the step-by-step code implementation process, it will not only let you master the implementation of Tooltip, but also enhance your programming interest and enthusiasm in front-end development work. level.

Use $.fn.tooltip.defaults to override the default value object. (Translator's Note: New plugin in version 1.3.3)

When the user moves the mouse over the element, a message prompt box will be displayed. The content of the prompt box can be any HTML element in the page or send a background request through Ajax to obtain the content of the prompt box.

jQuery EasyUI Tutorial-Tooltip (prompt box)

Use case:

Create a prompt box

Create a prompt box through two methods: tags and Javascript.

1. Create a prompt box through tags and add a class name of "easyui-tooltip" to the element without any Javascript code.

Hover me

2. Create a prompt box through Javascript.

Click here
$(‘#dd’).tooltip({
position: ‘right’,
content: ‘This is the tooltip message.’,
onShow: function(){
$(this).tooltip(‘tip’).css({
backgroundColor: ‘#666′,
borderColor: ‘#666′
});
}
});

Properties:

jQuery EasyUI Tutorial-Tooltip (prompt box)

Events:

jQuery EasyUI Tutorial-Tooltip (prompt box)

Methods:

jQuery EasyUI Tutorial-Tooltip (prompt box)

The above is the content of the jQuery EasyUI tutorial-Tooltip (prompt box). For more related content, please pay attention to the PHP Chinese website (m.sbmmt.com)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn