您好,登錄后才能下訂單哦!
這篇文章主要講解了“javascript創建表格,添加刪除操作的方法是什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“javascript創建表格,添加刪除操作的方法是什么”吧!
這是用基本的方式,更便捷的方法是,使用es6提供的模板字符串,代碼和效率能提高很多簡單的樣式:
a <input type="text"/>
b <input type="text"/>
c <input type="text"/><input type="button" value="添加"/><table></table>
js實現代碼:
var oinput=document.getElementsByTagName("input");var otable=document.getElementsByTagName("table")[0];
oinput[oinput.length-1].onclick=function(){
var otr=document.createElement("tr");
//創建單元格,并且將文本的值加到單元格里
for(var i=0;i<oinput.length-1;i++){
var otd=document.createElement("td");
otd.innerHTML=oinput[i].value;
otr.appendChild(otd);
}
//添加刪除按鈕,并加入到單元格中
var otd = document.createElement("td");
var oSpan = document.createElement("span");
oSpan.innerHTML = "刪除";
otd.appendChild(oSpan);
otr.appendChild(otd);
oSpan.onclick = function(){
//oTable.removeChild(oTr);
otable.removeChild(this.parentNode.parentNode);
}
otable.appendChild(otr);}
進度條html排版樣式:
<div class="progressBar">
<p style=""></p></div><div class="progressBar">
<p></p></div><div class="progressBar">
<p></p></div>
js執行代碼:
var opp=document.getElementsByTagName("p");function progress(obj,num){
var count=0;
var timer=setInterval(function(){
count++;
obj.style.width=count+"%";
if(count==num){
clearInterval(timer);
}
},20)}progress(opp[0],50);progress(opp[1],60);progress(opp[2],80);
感謝各位的閱讀,以上就是“javascript創建表格,添加刪除操作的方法是什么”的內容了,經過本文的學習后,相信大家對javascript創建表格,添加刪除操作的方法是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。