我的网页上有一个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 + '%');
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。