new 'Ext.ToolTip'({properties});
当一些事件发生时,出现的小信息基本上是用于悬停事件。
<!DOCTYPE html>
<html>
<head>
<link
href="./ext-6.0.0-gpl/ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css"
rel="stylesheet"
/>
<script src="./ext-6.0.0-gpl/ext-6.0.0/build/ext-all.js"></script>
<script type="text/javascript">
Ext.onReady(function () {
toolTip = new Ext.ToolTip({
id: 'toolTip',
anchor: 'bottom',
html: 'this is a basic tooltip',
title: 'Tool - Tip Title',
closable: true,
closeAction: 'hide'
})
Ext.create('Ext.Button', {
renderTo: Ext.getElementById('formID'),
text: 'hover Me',
listeners: {
mouseover: function () {
toolTip.show();
}
}
})
});
</script>
</head>
<body>
<div id="formID"></div>
</body>
</html>
运行结果:
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。