$(document).ready(function(e) {
$('#btntc').click(function(){
var html = "<div style='color:red'>测试</div>";
var button ="<input type='button' value='确定' /><input type='button' value='取消' />";
var win = new Window({
width : 400,
height : 300,
title : '测试弹窗',
content : html,
isMask : false,
buttons : button,
isDrag:true,
});
})
});