<input type="button" onclick="addline()" value="增加">
<table border="1" id="test">
<tr>
<td colspan="2"><input type="text" name="tt[]"></td>
</tr>
</table>
<input type="submit">
</form>
<script>
function addline(content){
newline=document.all.test.insertRow()
newline.insertCell().innerHTML='<input type="text" name="tt[]"><input type="button" value="删除此行"
onclick="del()">'
}
function del(){
document.all.test.deleteRow(window.event.srcElement.parentElement.parentElement.rowIndex)
}
</script>
第一步: 在页面查看源代码,把Form中包含的需要填列的HTML控件找出来如:<form name="mainfrm" action="" method="post">
<input type="text" name="username"/>
<input type="submit" value="submit"/>
</form>
第二步:编写代码 </strong>javascript:mainfrm.username.value="stangray"mainfrm.submit.focus()
第三步: 打开浏览器的“收藏夹”,在“链接”分类中添加一个URL收藏。
在URL项中:加入上面编写的代码,也可以指定快捷键,在名称中填写“自动填表”
第四步:测试在浏览器中打开你要填写表单的网址,然后点击“链接”栏(这个菜单栏在输入地址栏的右边<a href="http://www.codesky.net" class="hden">, 取消锁定工具栏后自动填表”链接。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)