码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2015-05-15 15:02:49      阅读:151      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!