$(function(){ var jsonfname = $('#getbtmjson').attr('data-filename'); if ( jsonfname ){ $.getJSON("https://stworld.jp/btmjson/"+jsonfname+".json?t="+new Date().getTime(), function() { }) .success(function(json){ $.each(json,function(k,item){ if ( item.minp == "0" ){ $('.'+item.code+'_MINP_STR').html('-'); $('.'+item.code+'_MINP').html('-'); }else{ $('.'+item.code+'_MINP_STR').html(item.minp_str); $('.'+item.code+'_MINP').html(item.minp); } }); }); } });