可在线管理ACCESS数据库,可新建,修改,建表等如同本地操作数据库
源代码在线查看: colorselect.html
BODY {
BACKGROUND: menu; MARGIN: 10px
}
BUTTON {
WIDTH: 5em
}
TABLE.CTab {
CURSOR: hand
}
function CTabCLICK() {
SEL.innerHTML = RGB.innerText;
SAMP.style.backgroundColor = event.srcElement.title;
}
function CTabOVER() {
text = event.srcElement.title;
if (! text) return;
if (text != event.srcElement.bgColor) text += " (" + event.srcElement.bgColor + ")";
RGB.innerText = text;
}
function CTabOUT() {
RGB.innerText = " ";
}
function Done() {
window.returnValue = SAMP.style.backgroundColor;
window.close();
}
-->
onclick=CTabCLICK(); onmouseout=CTabOUT(); onmouseover=CTabOVER();>
Selected:
(None -- click on a color to select)
onclick=Done()>DoneCancel