JavaScript action table, you can add rows and columns and change the background color code sharing _javascript Tips

Source: Internet
Author: User
Copy Code code as follows:

<meta http-equiv= "Content-type" content= "text/html; charset=gb2312 ">
<title>JavaScript</title>
<body>
<script language= "JavaScript" >
var n = 0;
function showtable (len) {
WI (' <table border= "1" width= "style=" Border-collapse:collapse "><tbody id=" table ">");
for (i=0;i<len;i++) {
if (parseint (i%2) ==1) {
BG = ' #F4FAC7 ';
} else {
BG = ' white ';
}
WI (' <tr bgcolor= ' +bg+ ' ><td> ' + (i+1) + ' line </td></tr> ');
}
WI (' </tbody></table><br/> ');
WI (' <input type= "button" value= "Add" id= "Add"/> ");
}
Function wi (str) {
return document.write (str);
}
Showtable (10);
var add = document.getElementById ("add");
Add.onclick = function () {
n = n+1;
if (n%2==0) {
BG = ' #F4FAC7 ';
} else {
BG = ' white ';
}
var table = document.getElementById ("table");
var tr = document.createelement ("tr");
Tr.bgcolor = BG;
var td = Document.createelement ("TD");
td.innerhtml = ' first ' + (10+n) + ' line ';
Tr.appendchild (TD);
Table.appendchild (TR);
}
</script>
</body>
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.