thinkphp-資原始檔載入

技術小美發表於2017-11-12

說明

系統提供了專門的標籤來簡化傳統方式的匯入外部JS和CSS檔案的方法

示例

傳統方式

<script type=`text/javascript` src=`/static/js/common.js`>
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />

本系統方式

{load href="/static/js/common.js" /}
{load href="/static/css/style.css" /}

同時載入多個資原始檔

{load href="/static/js/common.js,/static/css/style.css" /}

js標籤使用

{js href="/static/js/common.js" /}

css標籤使用

{css href="/static/css/style.css" /}
本文轉自 素顏豬 51CTO部落格,原文連結:http://blog.51cto.com/suyanzhu/1897261


相關文章