当用户点击浮动层时,改变文本框的值。 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <script language="JavaScript"> function $(id){ return (document.getElementById(id)); }
function show_div(evt) { var od = $("div1"); var e = window.event || evt; var o = e.srcElement || e.target; with (od.style) { display = "block"; left = o.offsetLeft + "px"; top = o.offsetTop + o.offsetHeight + 1 + "px"; } }
function hide_div(evt) { $("div1").style.display = "none"; }