layer弹出框
Posted zc_boy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了layer弹出框相关的知识,希望对你有一定的参考价值。
$(".div").click(function(){
var that = this;
// console.log(that.innerText);
layer.open({
title: [
‘房间信息‘,
‘ color:#fff;margin:0;‘
]
,anim: ‘up‘
// ,style: ‘ width: 100%; height: 100%;‘
,content: ‘<div>这是一个房间信息</div>‘ +
‘<img src="img/canting.jpg" class="picture" style="width: 100%;height: 140px;">‘+
‘<p >一共5卓,每桌十人座</p>‘
,btn: [‘我去预定‘, ‘我再看看‘],
// success: function(){
// $(‘img‘).click(function(){
// $(this).css(‘width‘,‘‘);
// $(this).css(‘height‘,‘‘)
// })
// },
yes: function(index){
console.log(‘点击了是‘);
console.log(that.innerText);
layer.close(index)
},
no:function(index){
console.log(‘您点了否‘);
layer.close(index)
}
});
});
以上是关于layer弹出框的主要内容,如果未能解决你的问题,请参考以下文章