js裡面能寫php嗎

2020-07-16 10:06:45

JavaScript巢狀PHP:

直接在JavaScript裡面寫入PHP語句,如:

<script type="text/javascript">
 
  BUI.use('bui/grid',function (Grid) {
    var data = [//表單內容資訊
            <?php
		foreach($slice_rows as $key=>$val){
		echo "{id:'".$val['id']."',imgpath:'".$val['imgpath']."',introduction:'".$val['introduction'].
               "',linkpath:'".$val['linkpath']."',date:'".$val['date']."'},";
	    }
	
	       echo "{id:'1112',imgpath:'李四',introduction:'this is a test',linkpath:'#',date:'date2'}";
	   ?>
	],
 
        grid = new Grid.SimpleGrid({
          render : '#grid', //顯示Grid到此處
          width : 950,      //設定寬度
          columns : [//表單頭部資訊
            {title:'編號',dataIndex:'id',width:80},
            {title:'圖片路徑',dataIndex:'imgpath',width:100},
			{title:'簡介',dataIndex:'introduction',width:200},
			{title:'連結地址',dataIndex:'linkpath',width:100},
            {title:'上傳日期',dataIndex:'date',width:100}
          ]
        });
      grid.render();
      grid.showData(data);
  });
  
</script>

以上就是js裡面能寫php嗎的詳細內容,更多請關注TW511.COM其它相關文章!