$('#pag').on('click','.clickable',function(){
$this = $(this);
refreshClasses($(this).data('id'))
})
要求jq 1.7+版本
$this = $(this);
refreshClasses($(this).data('id'))
})
要求jq 1.7+版本
2018-03-22
.overlap中的透明要通过rgba设置才能使得笔记本显示出来不是透明的
.overlap{
position: fixed;
left:0;
top: 0;
width:100%;
height: 100%;
/* background-color: black;
opacity: 0.5;*/
background-color: rgba(0,0,0,0.5);
/*display: none;*/
}
.overlap{
position: fixed;
left:0;
top: 0;
width:100%;
height: 100%;
/* background-color: black;
opacity: 0.5;*/
background-color: rgba(0,0,0,0.5);
/*display: none;*/
}
2018-01-23
最新回答 / Alice_hhu
说错莫怪哈~会不会是把渲染模块的那段代码写在template前面了?以至于获取不到template。要么就把template写在渲染模块的那段代码之前,像下面这样2个script标签的顺序。要么把渲染模块的那段代码用$(function({}))包起来。<script id="template1" type="text/x-handlebars-template"> <div>...<div></script><script> var...
2018-01-15
css 文件可以参照
https://gitee.com/EThunder/learning_2017/blob/master/1202_Handlebars/css/style.css
https://gitee.com/EThunder/learning_2017/blob/master/1202_Handlebars/css/style.css
2017-12-02