关键词:bat,bat获取文件内容 1.获取每行内容 @echo offfor /f "delims=" %%i in (config.txt) do (echo "%%i")timeout /t 100 2.在for中执行多条命令 一般形式: for in (set) do (命令a&命令b&命令c) 案例: @echo offfor /f "delims=" %%i in (Config.txt) do (set /p=&qu
js在table指定tr行上或下面添加tr行 function onAddTR(trIndex) { var tb = document.getElementById("tb1"); var newTr = tb.insertRow(trIndex);//添加新行,trIndex就是要添加的位置 var newTd1 = newTr.insertCell(); newTd1.