我试图操纵标签内的元素。有没有办法做到这一点? 这是代码:
<frame id="foo" name="myFrame" src="http://google.com" frameborder="0">
#document
<html>
<head></head>
<body></body>
</html>
</frame>
理想情况下,当页面加载时,我想添加消息&#34;请稍候...&#34;在元素中。我尝试使用JQuery来做到这一点,但不能让它正常工作。
<script>
$(document).ready(function() {
$(function(){
var f=$('#foo');
alert(f.contents().find('body'));
f.contents().find('body').add('Please Wait....');
});
});
</script>