微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

小黑小波比.实现button关闭窗体

<div  id="myModal" tabindex="-1" style="position:absolute;zIndex:9999;display:none;width:200px;height:220px;top:100px;left:100px;">
							<div class="modal-dialog">
								<div class="modal-content">
											<div class="modal-header">
												<button type="button" class="close" 
													data-dismiss="modal" aria-hidden="true" on="btnClose">
													×
												</button>
												<h4 class="modal-title" id="myModalLabel">
													提示
												</h4>
											</div>
											<div class="modal-body">
												验证成功!
											</div>
											<div class="modal-footer">
												<button type="button" class="btn btn-primary" 
												data-dismiss="modal" on="btnClose">确定
												</button>
											</div>
								</div>
							</div>
						</div>

在确定和x按钮设定事件为on="btnClose"


btnClose:function(sender,arg){
           _('#myModal').hide();
        },
在事件中插入这事件代码.#myModal代表id为myModal,hide()代表隐藏 show()代表显示

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐