
js
iteye_15406
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
iframe高度自适应
//设置iframe高度自适应 function setWinHeight(obj){ var win = obj; if (document.getElementById) { if (win && !window.opera) { if (win.contentDocument && win.contentDocument.body.offsetHeight) ...原创 2012-03-31 19:34:07 · 85 阅读 · 0 评论 -
javascript添加、删除行;insertRow/deleteRow/insertCell
[code="java"] function addRow(){ var newTr = document.getElementById("peopleTable").insertRow(); var newTd0 = newTr.insertCell(); var newTd1 = newTr.insertCell(); newTd0.width = 50; ...原创 2013-07-10 14:59:39 · 174 阅读 · 0 评论