我正在尝试使用jQuery在H1中查找文本,然后使用它来替换foo2中已有的文本。示例如下:
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Take text from element</title>
<script type="text/javascript">
var str = $("h1").text();
$("#foo2").html(str);
$("#foo2").replaceWith( str );
</script>
</head>
<body>
<div id="foo"><div id="foo2">replace with h1</div></div>
<h1>Text I want to take</h1>
</body>
</html>
答案 0 :(得分:18)
$("#foo2").text($("h1").text());
答案 1 :(得分:3)
<script type="text/javascript">
$(function() {
var str = $("h1").text();
$("#foo2").html(str);
$("#foo2").replaceWith( str );
});
</script>
您的代码有效,只需将$(function(){//您的代码放在此处}};在它周围。
答案 2 :(得分:2)
这应该有效:
$('#foo2').text($('h1').text());
正如Jamiec建议的那样,不要忘记将其包装在$(document.ready();
:
$(document).ready(function() {
$('#foo2').text($('h1').text());
});
否则它将在DOM加载之前执行,这意味着它将找不到内容。
答案 3 :(得分:0)
以下页面对您有用: