我有一个包装器div1,其中div2包含一个字符串。当我点击div1时,我希望div2中的内容出现在alert()中;怎么办呢?
document.getElementById(feats).addEventListener("click",function show() {
var htmlstring = this.innerHTML;
alert(htmlstring);
上面的代码只是添加一个偶数监听器并从包装器中提醒所有html代码。
由于
答案 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>
另外,轻轻一点,如果你开始接受答案,你会收到更多回复。