他のスクリプトから価値を得たいです。他のスクリプトから価値を得るには? (in html)
スクリプト(socket.io約) - >(約highchart)Bスクリプト
このスクリプト
<script>
var socket = io();
socket.on('currTemp', function(data){
document.getElementById("temp").innerHTML = "Temperature : " + data;
***// I WANT 'data'.***
}); </script>
であり、これはBスクリプトです
<script type="text/javascript">
....
code
....
setInterval(function() {
var point,
newVal,
inc;
if (chartRpm) {
point = chartRpm.series[0].points[0];
inc = ------> ***I want 'inc = data '***
newVal = inc;
if (newVal < 0 || newVal > 1200) {
newVal = point.y - inc;
}
point.update(newVal);
}}, 2000); </script>
このファイルは同じファイルにあります。どうやってするか ?