
技巧
iteye_3118
这个作者很懒,什么都没留下…
展开
-
背景图片自适应
[code="html"] 查看 [/code]原创 2008-11-17 16:07:23 · 146 阅读 · 0 评论 -
自动添加行
[code="js"]var form = document.forms[0]; var objTable = document.getElementById("specialFee"); var objTableBody=objTable.children(0); var rowCount = objTable.rows.length; var ...原创 2008-11-17 16:08:09 · 172 阅读 · 0 评论 -
删除行
[code="js"] function delrow(opt){ var Elm = opt; while(Elm && Elm.tagName != "TR") { Elm = Elm.parentElement; } var intThisIndex = Elm.rowIndex; Elm.parentElement....原创 2008-11-17 16:08:36 · 131 阅读 · 0 评论 -
js 联动
[code="js"]function clearSelect(ctlSelect){ ctlSelect.options.length = 0;}function addOption(select,text,value) { if(text != "") { var obj = document.createElement("option");obj.tex...原创 2008-11-17 16:09:45 · 115 阅读 · 0 评论 -
iframe取值
[code="js"]document.getElementById("messageIframe").contentWindow.document.getElementById("area").value[/code]原创 2008-11-17 16:11:22 · 122 阅读 · 0 评论 -
HTML 定位
window.locationwindow.location="#error";滚动到页面最上面document.body.scrollTop=0;原创 2008-11-17 16:11:59 · 310 阅读 · 0 评论 -
jsp2.0 注意
According to JSP 2.0 specification (chapter 1.7 page 72,73)This code is illegal:Instead the correct sentence would be:原创 2008-11-17 16:12:32 · 124 阅读 · 0 评论