从子div获取div内容

时间:2010-11-24 16:09:29

标签: javascript html

我有一个包装器div1,其中div2包含一个字符串。当我点击div1时,我希望div2中的内容出现在alert()中;怎么办呢?

document.getElementById(feats).addEventListener("click",function show() {
            var htmlstring = this.innerHTML;

            alert(htmlstring);

上面的代码只是添加一个偶数监听器并从包装器中提醒所有html代码。

由于

2 个答案:

答案 0 :(得分:0)

使用jQuery,非常值得学习:

$('#div1').click(function() {
    alert($('#div2').text());
});

答案 1 :(得分:0)

这样做你想要的:

<html>
<head></head>
<body>

<div id="div1" onclick="doAlert();" style="cursor: pointer; cursor: hand;">
<div id="div2">
  Hello, this is the contents of div2
</div>
</div>

<script type="text/javascript">
  function doAlert() {
    alert(document.getElementById("div2").innerHTML);
  }
</script>

</body>
</html>

另外,轻轻一点,如果你开始接受答案,你会收到更多回复。