87,989
社区成员
发帖
与我相关
我的任务
分享<!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=utf-8" />
<title> new document </title>
</head>
<body>
<input type="text" id="t" />
<input type="button" value="click me" id="btn" />
<div id="nr">
<p>1111111111111</p>
<p>2222222222222</p>
</div>
<script>
document.getElementById('btn').onclick = function(){
var value = document.getElementById('t').value;
var p = document.createElement('p');
p.innerHTML = value;
document.getElementById('nr').appendChild(p);
};
</script>
</body>
</html>
<!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=utf-8" />
<title> new document </title>
</head>
<body>
<input type="text" id="t" />
<input type="button" value="click me" id="btn" />
<div id="nr">
<p>1111111111111</p>
</div>
<script>
document.getElementById('btn').onclick = function(){
var value = document.getElementById('t').value;
var p = document.createElement('p');
p.innerHTML = value;
document.getElementById('nr').appendChild(p);
};
</script>
</body>
</html>