我在javascript中的页面上有工具提示(prototip,但无关紧要)我希望当用户移动单词时,工具提示在哪里,从我的代理服务器生成带有字符串的工具提示内容...所以当我移动时单词在哪里是工具提示,javascript在代理服务器上发送请求并获得字符串内容的响应 - 从此响应javascript获取此字符串并显示。 有可能的?怎么样?
答案 0 :(得分:3)
Prototip可以开箱即用。查看“Ajax tooltip”演示。 Prototip使用Prototype's Ajax functions发出Ajax请求。您只需构建将正确内容传递给请求的脚本。
Prototip网站上的修改示例:
new Tip('myTip', {
ajax: {
url: '/include/ajax.php', // this is where you put the URL of your script
options: {
parameters: { parameter1: value1, parameter2: value2}
// this is where you put any parameters to the script
}
}
});