よくわかりませんが、値をhtml balise(例として非表示)で出力し、javascript:document.getElementById
を使用して取得する必要があると思います。例:
<input type="hidden" id="valueForJs" value="244-125">
<script>
var obj = document.getElementById("valueForJs").value;
var array = obj.split("-");
alert('value = ' + array[0] + ' ' + array[1]);
// now you have your 2 value and you can use it in your script below...
</script>
値をspan
に入れることもできます およびhide
たとえば、このスパンですが、入力はよりクリーンになると思います。