我的网页上有一个bootstrap进度条
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valueNow="70"
aria-valuemin="0" aria-valuemax="100" style="width:70%">
70%
</div>
</div>
我的PHP脚本 –
<?PHP
function get_memory() {
foreach(file('/proc/meminfo') as $ri)
$m[strtok($ri, ':')] = strtok('');
return 100 - round(($m['MemFree'] + $m['Buffers'] + $m['Cached']) / $m['MemTotal'] * 100);
}
echo "".get_memory()."";
?>
基本上,我想做的是
<?PHP echo "".get_memory()."";?>
在进度条的style =“width:70%”上,进度条将使用PHP函数报告的值动态更新.
我希望这是有道理的.
我试过了
<script>
setInterval(function(){
jQuery.ajax({
url: "ramUsage.PHP",
success: function(result) {
$('.progress-bar').css("width", data + '%');
},
});
}, 1000);
</script>
这给了我
ReferenceError: data is not defined
使用websockets代替AJAX不是更好吗?如果是这样,我该怎么做?
解决方法:
代替 ,
$('.progress-bar').css("width", data + '%');
你应该使用,
$('.progress-bar').css("width", result + '%');
要么
$('.progress-bar').css("width", result.responseText + '%');