我是AJAX / jQuery的新手并尝试新的东西。
here is my fiddle for better understanding每个方格都是DIVS。
<div class="desk_box_ver" id="desk_B20" data-rel="85" style="left:20px;top:1165px;">B20</div>
正在使用AJAX调用检索其中的数字,该调用使用PHP脚本执行它 一个查询,它将替换“B20”为“1300”作为例子。
问题:
如何根据显示的数字生成“热图”。 示例:假设数字范围从100(最低)到1800(最高)。 根据数字范围,必须显示背景颜色 绿色,黄色,橙色,红色。
我在stackoverflow上发现的类似问题是this one
AJAX:我如何在DIV中显示数字
<script type="text/javascript">
$(document).ready(function() {
$('#aht').click(function(){
$.ajax({
type:"GET",
url : "show_aht.php",
data:{ } , // do I need to pass data if im GET ting?
dataType: 'json',
success : function(data){
//going through all DIVs only once with this loop
for(var i = 0; i < data.length; i++) { // loop over results
var divForResult = $('#desk_' + data[i]['station']); // look for div for this object
if(divForResult.length) { // if a div was found
这就是我输出的数字
divForResult.html(data[i]['aht_value']); // set inner HTML with AHT value
}//end if
}//end for
}//end success
});//end ajax
});//end click
});//end rdy
</script>
从 下面的数组中检索 show_aht.php数字
$result = array();
foreach ($memo as $username => $memodata) {
if (in_array($username, array_keys($user))) {
// Match username against the keys of $user (the usernames)
$userdata = $user[$username];
//if AHT is null give N/A as value
if (is_null($memodata['aht_value'])) {
$result[] = array( 'username' => $userdata['username'],
'aht_value' => 'NA',
'station' => $userdata['station']
);
}//end inner if
//else give the actual value of AHT without the decimals
else {
$result[] = array( 'username' => $userdata['username'],
'aht_value' => substr($memodata['aht_value'],0,-3),
'station' => $userdata['station']
);
}//end else
}//end outer if
}//end for
echo json_encode($result);
答案 0 :(得分:2)
与this fiddle玩游戏。它会插入一个值,然后将颜色应用于(使用您想要更改的非常简单的算法)。以下是您在代码中实现它的方法
success : function(data){
for(var i = 0; i < data.length; i++) { // loop over results
var divForResult = $('#desk_' + data[i]['station']); // look for div for this object
if(divForResult.length) { // if a div was found
divForResult.html(data[i]['aht_value']).css("background-color", colorMe(data[i]['aht_value']));
}//end if
}//end for
}//end success
在您的代码中提供这些内容:
function colorMe(v){
return "rgb(" + conv(v) + "," + (255-conv(v)) + ",0)";
}
function conv(x){
return Math.floor((x - 100) / (1800-100) * 255);
}
答案 1 :(得分:0)
我不确定我是否完全理解了这个问题,但这是最简单的想法,希望能帮到你:http://jsfiddle.net/Arministrator/0vhv37jf/
$( document ).ready(function() {
var valuediv = document.getElementById('valuediv');
var valuedive = valuediv.innerHTML;
$("#valuediv").css({"background-color":"#"+valuedive});
});
div中的数字是什么,它会影响div的颜色。如果你想要超过3位数,你可以玩它,这只是一个指导你的例子。 (例如#900是红色)
答案 2 :(得分:0)
我写了一个泛型函数,它接受一个数字和一个范围对象作为参数,并根据它在该范围内的位置计算数字的颜色。
/**
* Calculate a color based on number's position in a range.
* @param {number} num Number to calculate a color for
* @param {object} opts Range of colors and numbers in the following form:
* {
* start: {number: {number}, color: {rgb array: [r,g,b]}},
* end: {number: {number}, color: {rgb array: [r,g,b]}}
* }
* where each of "r", "g", "b" is a value from 0 to 255.
* I.e. a range specifying numbers from 0 to 100 with colors from black to white: {start: {number: 0, color: [0,0,0]}, end: {number: 100, color: [255,255,255]}}
* @return {string} CSS color
*/
function colorCode(num, opts) {
var color = [];
if(num <= opts.start.number)
color = opts.start.color;
else if(num >= opts.end.number)
color = opts.end.color;
else {
for(var i = 0; i < 3; i++) {
color[i] = Math.round( (num - opts.start.number) / (opts.end.number - opts.start.number) * (opts.end.color[i] - opts.start.color[i]) + opts.start.color[i] );
}
}
return 'rgb(' + color.join() + ')';
}
请参阅fiddle