技巧
iteye_3118
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
背景图片自适应
[code="html"] 查看 [/code]原创 2008-11-17 16:07:23 · 164 阅读 · 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 · 201 阅读 · 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 · 153 阅读 · 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 · 141 阅读 · 0 评论 -
iframe取值
[code="js"] document.getElementById("messageIframe").contentWindow.document.getElementById("area").value [/code]原创 2008-11-17 16:11:22 · 145 阅读 · 0 评论 -
HTML 定位
window.location window.location="#error"; 滚动到页面最上面 document.body.scrollTop=0;原创 2008-11-17 16:11:59 · 343 阅读 · 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 · 152 阅读 · 0 评论
分享