gpt4 book ai didi

javascript - 将地址簿更改为表格

转载 作者:行者123 更新时间:2023-11-28 15:02:42 25 4
gpt4 key购买 nike

在我运行代码的那一刻,我在地址簿中获取数据,但我希望它在表格中。我尝试添加一个文档写入来创建表格,但我不确定如何将数据显示到表格而不是地址簿中。我该怎么做?

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN“ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Address Book</title>
<style type="text/css">
.ab {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: small;
color: #993300;
background-color: #CCFFCC;
padding: 5px;
height: 100px;
width: 350px;
border: thin dotted #993300;
}
</style>

<script type="text/javascript">
function addressBookItem (fname, lname, email) {
this.fname= fname;
this.lname = lname;
this.email = email;
}
var x = document.createElement("TABLE");
addressBookItem.prototype.write = function() {
// var adrbook = "<p class='ab' First Name: " + this.fname + "&ltbr /&gt";
var adrbook = "<p class='ab'>First Name: " + this.fname + "<br />";
adrbook += "Last Name: " + this.lname + "<br />";
adrbook += "Email Address: " + this.email + "</p>";

document.write(adrbook);
}

</script>
</head>
<body>
<script type="text/javascript">
var aB1 = new addressBookItem('Roger', 'Williams', 'rwilliams@gmail.com');
var aB2 = new addressBookItem ('Rose', 'Schultz', 'rose_s@earthlink.net');
document.write("<table border=\"2\"><tr><th>First Name</th><th>Last Name</th><th>Email Address</th></tr>");
aB1.write();
aB2.write();
document.write("</table");
</script>
</body>
</html>

最佳答案

    function addressBookItem (fname, lname, email) {
this.fname= fname;
this.lname = lname;
this.email = email;
}
var x = document.createElement("TABLE");
addressBookItem.prototype.write = function() {

var adrbook = "<tr><td>"+ this.fname + "</td>";
adrbook += "<td>" + this.lname + "</td>";
adrbook += "<td>" + this.email + "</td></tr>";

document.write(adrbook);
}

var aB1 = new addressBookItem('Roger', 'Williams', 'rwilliams@gmail.com');
var aB2 = new addressBookItem ('Rose', 'Schultz', 'rose_s@earthlink.net');
document.write("<table border=\"2\"><tr><th class='ab'>First Name</th><th class='ab'>Last Name</th><th class='ab'>Email Address</th></tr>");
aB1.write();
aB2.write();
document.write("</table");
.ab {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: small;
color: #993300;
background-color: #CCFFCC;
padding: 3px;
height: 30px;
width: 350px;
border: thin dotted #993300;
}
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN“ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Address Book</title>
</head>
<body>



</body>
</html>

关于javascript - 将地址簿更改为表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49914404/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com