- 注册时间
- 2013-9-6
- 最后登录
- 2014-5-21
- 阅读权限
- 10
- 积分
- 424
- 精华
- 0
- 帖子
- 120
|
lost 发表于 2013-11-26 16:11
看看是不是路径问题或者更新下MiniUI.js
现在鼠标放上去,就提示这个错
请问是什么情况啊
我的代码是这样的:
var tip = new mini.ToolTip();
tip.set({
target: document,
selector: '.showCellTooltip',
onbeforeopen: function (e) {
e.cancel = false;
},
onopen: function (e) {
var el = e.element;
var id = el.id;
if (id) {
this.showLoading();
$.ajax({
url: "../Win/winexample.htm",//这是弹出层中需要展示的页面
data: { id: id },
async: true,
success: function (text) {
//模拟网络延迟
setTimeout(function () {
tip.setContent(text);
}, 300);
},
error: function (jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
CloseWindow();
}
});
}
}
});
|
|