I have tooltip(prototip, but it doesnt matter) on my page in javascript and I want when user mo开发者_StackOverflow中文版ve on word, where is tooltip, generate tooltip content with string from my proxy-server...so probably when I move on word where is tooltip, javascript send request on proxy server and get response with string content - from this response javascript get this string and show. It is possible? How?
Prototip can do that out of the box. Check out the "Ajax tooltip" demo. Prototip makes a Ajax request using Prototype's Ajax functions. You just need to build the script that will hand the right content to the request.
Modified example from the Prototip web site:
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
}
}
});
精彩评论