这个可以用jquery的一个插件cluetip
地址下载是:plugins.learningjquery.com/cluetip/demo/
下面简单讲解下用法:
1 首先当然要放JQUERY的基本JS,和这个插件的JS了,如:
a class="title" href="#" title="This is the title|The first set of contents comes after the first delimiter.....
$('a.title').cluetip({splitTitle: '|'});
这样就会在该连接被点时,弹出一个框,标题是this is the title,内容是|号后面的内容了
2 也可以弹出的内容是个连接,比如
a class="basic" href="ajax.htm" rel="ajax.htm"
$('a.basic').cluetip();
3 定义弹出框的高度大小等:
a class="custom-width" href="ajax3.htm" rel...[ 查看全文 ]