鼠标经过td时变成文本框架,离开时自动保存到数据库
鼠标经过td时变成文本框架,离开时自动保存到数据库,这个问题怎么做呀 --------------------编程问答-------------------- 发了两遍? --------------------编程问答-------------------- js实现方法写在onmouseover 和 onmouseout 事件 --------------------编程问答-------------------- js实现
方法写在onmouseover 和 onmouseout 事件 --------------------编程问答-------------------- js+css
保存可以通过onblur事件 --------------------编程问答-------------------- 可以给一些例子吗 --------------------编程问答-------------------- 谢谢 --------------------编程问答-------------------- <table width="306" border="1" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="68" height="78"> </td>
<td width="183" valign="top" onmouseover="show()"><label>
<input style="display:none" type="text" onblur="Hidetd()" id="txt" name="textfield" />
</label></td>
<td width="55"> </td>
</tr>
</table>
<input id="btnSave" type="button" style="display:none" />
<script type="text/javascript">
function show()
{
cont=document.getElementById("txt");
cont.style.display="";
cont.focus();
}
function Hidetd()
{
cont=document.getElementById("txt");
cont.style.display="none";
conbtn=document.getElementById("btnSave");
conbtn.click();
}
</script>
你的保存 用隐藏的btnSave 提交给服务器 你可以把上面的txt换成TextBox btnSave换成Button
补充:.NET技术 , ASP.NET