通过html页面传递数据到js页面的方法

php 页面

<div id="years-list" style="display:none">
<?php echo json_encode(); ?>
</div>

js 页面

var yearsArr = JSON.parse($('#years-list').text());

$.each(yearsArr,function(index,value){
    conse.log(value)
})
标签:

发表评论