테이블에 행 삽입
6391 단어 양식
<HTML>
<TITLE>Form Object example</TITLE>
<HEAD>
<script language="javascript">
function delrow1()
{
var oElement=event.srcElement;
while(oElement.tagName!="TR")
{
oElement=oElement.parentElement;
}
var oTBody=oElement.parentElement;
oTBody.removeChild(oElement)
}
function delrow2()//
{
var currRowIndex=event.srcElement.parentNode.parentNode.rowIndex;
document.all.yltable.deleteRow(currRowIndex);//table10-- id
}
function insertrow1() // 1
{
var newnode = document.getElementById('yltable').lastChild.cloneNode(true);
document.getElementById('yltable').appendChild(newnode);
}
function insertrow2() // 2
{
newRow=document.all.yltable.insertRow(-1);
var j_1 = document.all.yltable.rows.length;
newcell=newRow.insertCell();
newRow.bgColor='#FFFFFF';
newcell.align='center';
newcell.innerHTML=""+j_1+"";
newcell=newRow.insertCell() ;
newRow.bgColor='#FFFFFF';
newcell.align='center';
newcell.innerHTML="<input type='text' name='ylText"+j_1+"' />";
newcell=newRow.insertCell() ;
newRow.bgColor='#FFFFFF';
newcell.align='center';
newcell.innerHTML='<input name="button3" type="button" onClick="delrow1()" value=" 1"> <input name="button3" type="button" onClick="delrow2()" value=" 2">';
document.all.yltable.focus();
}
function inserttable()
{
var newnode = document.getElementById('yltable').cloneNode(true);
document.getElementById('ylform').appendChild(newnode);
}
</script>
</HEAD>
<BODY>
<form name="ylform" id="ylform">
<center>
<input name="button" type="button" onClick="inserttable()" value=" ">
<input name="button2" type="button" onClick="insertrow1()" value=" 1">
<input name="button22" type="button" onClick="insertrow2()" value=" 2">
</center>
<div style="overflow-y:auto; overflow-x:visible;width:85%;height:150px">
<table border="1" align="center" width="50%" id="yltable">
<TBODY id=yl1>
<tr>
<td width="30%" height="22"><div align="center">1</div></td>
<td width="40%">
<div align="center">
<input name="textfield" type="text" value="yl">
</div></td>
<td width="30%"><div align="center">
<input name="button3" type="button" onClick="delrow1()" value=" 1"> <input name="button3" type="button" onClick="delrow2()" value=" 2">
</div></td>
</tr>
</TBODY>
<TBODY id=yl2>
<tr>
<td><div align="center">2</div></td>
<td><div align="center">
<input name="textfield2" type="text" value="yanleigis">
</div></td>
<td><div align="center">
<input name="button3" type="button" onClick="delrow1()" value=" 1"> <input name="button3" type="button" onClick="delrow2()" value=" 2">
</div></td>
</tr>
</TBODY>
<TBODY id=yl3>
<tr>
<td ><div align="center">3</div></td>
<td ><div align="center">
<input name="textfield22" type="text" value="[email protected]">
</div></td>
<td ><div align="center">
<input name="button3" type="button" onClick="delrow1()" value=" 1"> <input name="button3" type="button" onClick="delrow2()" value=" 2">
</div></td>
</tr>
</TBODY>
</table>
</div>
<center>
</center>
</form>
</BODY>
</HTML>
<table width=450 align=center>
<tr align=center><td align=center >
<table id="fl" name="fl" class="TableFrame" border="1" bordercolor="#7C9CCF" width=463 align=center >
<tr class="ListTitle">
<td width="25%" align="center"> </td>
<td width="46%" align="center"> </td>
<td width="25%" align="center"> </td>
<td width="3%" align="center"> </td>
</tr>
</table>
</td></tr>
<tr align=center><td align=center>
<div style="overflow-y:scroll; overflow-x:visible;width:450;height:390px;position:absolute;left:270px">
<table id="flTable" name="flTable" class="TableFrame" border="1" bordercolor="#7C9CCF" width=450 align=center>
<tr onclick="getCurrentRow()" class=ListCellRow >
<td width="26%" align=center >1111</td>
<td width="48%" align=center >2222</td>
<td width="26%" align=center >3333</td>
</tr>
</table>
</div>
</td></tr>
</table>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Windows Forms에서 배열의 요소에 바인딩하는 방법Windows Forms에서 배열의 요소에 바인딩하고 싶을 때가 상당히 있습니다. 같은 컨트롤을 복수 배치했을 경우도, 배열로 관리하는 것이 편한 때가 있습니다. Window.Forms VB 2017 .NET Fra...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.