87,990
社区成员
发帖
与我相关
我的任务
分享
<!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>无标题文档</title>
</head>
<script>
function $(el){return document.getElementById(el)};
function response(obj)
{
var oComment=obj.parentNode;//这里是关键。找到当前留言对象。
oComment.appendChild($("response"));
$("response").style.display="block";
}
</script>
<div>
<div>
我是一条评论
<div onclick="response(this);cursor:pointer;" style="color:red;cursor:pointer;">回复</div>
</div>
<div>我是一条评论<div onclick="response(this);" style="color:red;cursor:pointer;">回复</div></div>
<div>我是一条评论<div onclick="response(this);" style="color:red;cursor:pointer;">回复</div></div>
<div>我是一条评论<div onclick="response(this);" style="color:red;cursor:pointer;">回复</div></div>
<div>我是一条评论<div onclick="response(this);" style="color:red;cursor:pointer;">回复</div></div>
</div>
<div id="response" style="display:none;">
<textarea style="width:300px;height:150px"></textarea>
<input value="提交" type="submit" />
</div>
</body>
</html>