首页 > Web开发 > 详细

Tip: How to use ajax to get extra info for tooltip

时间:2015-05-15 15:02:08      阅读:195      评论:0      收藏:0      [点我收藏+]

We need extra info to show when moving cursor to point.

Javascipts:

	formatter: function() {
		var rV = null;
		$.ajax({
		  dataType: "json",
		  url: ‘getDetail.php?tester=‘+this.series.name,
		  async: false, // this will stall the tooltip
		  success: function(data){
			rV = data.tester;
		  }
		});
		return rV;
	 }

PHP:

<?php
header("Content-type: text/json");

$items[‘tester‘]=$tester.‘ABCDEFG‘;
print json_encode($items);
?>

  

Tip: How to use ajax to get extra info for tooltip

原文:http://www.cnblogs.com/binglong/p/4505799.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!