自动调整为最大长度:
鼠标点时自动变成最大长度,离开或选中时恢复原长度
鼠标滑过时自动变成最大长度,离开或选中时恢复原长度
选择后在页面的其它位置显示选择的项目
鼠标滑过时显示当前选择的项目的值
// 定义popup
var op=window.createpopup();
op.document.body.style.background=beige;
//popup 是否已显示
var opshow=0;
function showtitle(obj){
var h=event.offsety;
var fontsize=(obj.style.fontsize==?(obj.currentstyle.fontsize==?9:obj.currentstyle.fontsize):obj.style.fontsize);
fontsize=parseint(fontsize)*1.6;
var l=parseint(h/fontsize);
op.document.body.innertext=obj.options[l].text;
len=obj.options[l].text.length*8;
op.show(event.offsetx+20,event.offsety+fontsize+5,len,fontsize,document.body);
opshow=1;
}
function hidetitle(obj){
if(opshow==1)op.hide();
}