我正在开发一项功能,如果您单击一个模糊链接,它将在预览窗口中显示完整的描述......很像搜索引擎中的搜索结果预览,如谷歌。
我需要将完整的描述文本和事件都传递给处理函数,以便该函数知道要显示什么以及在哪里显示(在简介下)。
我的问题是我应该将什么传递给函数。目前我有以下,它不工作。
<a href="javascript:DisplayFullDescription('blah blah description goes here');">blurb text here</a>
function javascript:DisplayFullDescription(e, fullText){
//find out mouse click position
//display a preview window (div) with description there
}