2016-09-21 12 views
2

$("#spanrWS_Measured").text(data[0]);から戻ってくる値を私のスワップ値(現在は123)として表示したいとします。どんな助けも素晴らしいだろう。完全なコードは以下の通りです。あなたはゲージリファレンスvar.likeのg1.refresh(10)上のデータ呼リフレッシュ機能を得るとき石鹸のダイナミックスジャッジド値

<script src="scripts/raphael-2.1.4.min.js"></script> 
<script src="scripts/justgage.js"></script> 
    <script type = "text/javascript"> 

$(document).ready(function(){ 
setInterval(ajaxcall, 5000); // Call every 5 seconds 
}); function ajaxcall(){ 
$.ajax({ 
    url: 'soap.php', 
    success: function(data) { 
     data = data.replace('[',''); 
     data = data.replace(']',''); 
     data = data.split('|'); 

    // Status 
    $("#spanrWS_Measured").text(data[0]); 

    } 
}); } 
document.addEventListener("DOMContentLoaded", function(event) { 
    var g1; 

      <!--Start G1-> 
    var g1 = new JustGage({ 
     id: "g1", 
     value: 123, 
     min: 0, 
     max: 100, 
     pointer: true, 
     pointerOptions: { 
     color: '#222D4B', 
    }, 
     decimals: 1, 
     startAnimationTime: 500, 
     startAnimationType: ">", 
     refreshAnimationTime: 1000, 
     refreshAnimationType: "bounce", 
     title: "", 
     label: "mps", 
     titleFontColor: "black", 
     valueFontColor: "black", 
     labelFontColor: "black", 
     relativeGaugeSize: true, 
     customSectors: [{ 
    color : "#00ff00", 
    lo : 0, 
    hi : 60 
    },{ 
    color : "#ff0000", 
    lo : 61, 
    hi : 120 
    }], 

    }); 
    <!--End G1--> 
     }); 
</script> 
+0

でこれを使用。ありがとう。 – Murali

+0

ありがとう。私はこれを最後に使用した。 g2.refresh(data [1]); – BjH

+0

ようこそ。 – Murali

答えて

1

私は最後

function ajaxcall(){ 
$.ajax({ 
    url: 'soap.php', 
    success: function(data) { 
    data = data.replace('[',''); 
    data = data.split('|'); 

     // Dials 
     g1.refresh(data[0]); 
     g2.refresh(data[1]); 
     g3.refresh(data[2]);