Ext Js中 Ext.QuickTips的应用

<script>function StorePage(){d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'keyit','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes'));keyit.focus();}</script>

在看ExtJs的例子中很多都有Ext.QuickTips.init();这一句话;

ExtJs2.0增加了一个扩展组件就是Ext.QuickTips,支持在超文本中定义浮动提示的内容,界面也比HTML中的那个缺省的样式好看

比如

<inputtype="button"value="tip button"ext:qtitle="tip button"ext:qtip="Thisisaquicktipfrommarkup"></input>

只要你导入了ext,并且初始化了Ext.QuickTips.init(),

这样在你在刚才的页面里鼠标移动到 tip buuton上时就会出现我们提示的那些提示,和html里自带的那种提示不一样,要好看一点

你可能感兴趣的:(html,C++,c,ext,C#)