标签:width query 路径问题 java angular col color highlight .com
1.templateUrl
.component("noData",{ templateUrl:"components/noData.html" // 注意相对路径是针对index.html的 })
2.图片路径
相对路径 相对于 index.html
<!-- 暂无数据 --> <div class="no_data"> <!-- 本地相对路径 相对index.html --> <img src="img/noData.png" /> <p>暂无数据</p> </div> <style> .no_data{ text-align: center; /*让div内部文字居中*/ width: 200px; height: 160px; margin: 170px auto 0px; } </style>
彩蛋:
jquery 多属性选择器写法
$("input[id=‘XX‘][class=‘XXX‘]")
.
标签:width query 路径问题 java angular col color highlight .com
原文地址:https://www.cnblogs.com/crazycode2/p/9204008.html