之前重写了artdialog.tips,让artdialog.tips依附于某一个元素显示。
artDialog.tips=function(content,time,followid){
return artDialog({
id:'Tips',
title:false,
cancel:false,
lock:false,
follow:followid
})
.content('<div style="padding:0 1em;width:220px;height:20px">'+content+‘</div>’)
.time(time || 1.5);
};
重写后,在使用时多了一个参数,写法是:
art.dialog.tips("内容",2,document.getElementById(id));
这样就可以实现tips在文本框下方显示。