的javascript變量我在HTML有這樣的名單:顯示HTML
<div style="padding-left:30px;">
<ul style="list-style-type:circle; margin-top:0px;">
<li><a href="http://printoriente.com/tarjetas-presentacion/">Tarjetas de presentacion</a><label>I want the JS variable HERE</label></li>
<li><a href="http://printoriente.com/afiches/">Afiches</a><label>I want the JS variable HERE</label></li>
<li><a href="http://printoriente.com/volantes/">Volantes</a><label>I want the JS variable HERE</label></li>
<li><a href="http://printoriente.com/fotos/">Fotos</a><label>I want the JS variable HERE</label></li>
</ul>
</div>
我需要在我所指示的(data.refPrice)變量 「我希望JS變量HERE」:
<script>
$.getJSON("http://api.printoriente.com/price/tarjetas-presentacion", function(data) {
console.log(data.refPrice);
});
$.getJSON("http://api.printoriente.com/price/afiches", function(data) {
console.log(data.refPrice);
});
$.getJSON("http://api.printoriente.com/price/volantes", function(data) {
console.log(data.refPrice);
});
$.getJSON("http://api.printoriente.com/price/Fotos", function(data) {
console.log(data.refPrice);
});
</script>
儘可能避免硬編碼CSS樣式 –