您好我有一些大问题请帮助我..
我有一个像这样的html结构:
<html>
<body>
<div id="getInHere">Get me</div>
<iframe>
<html>
<head>
$('#clickme').click(function(){
// i don't what should be put here to get to #getInHere div
});
</head>
<body>
<a href="#" id="clickme">Click me</a>
</body>
</html>
</iframe>
</body>
</html>
我必须在#getInHere
上添加一些东西,我不知道如何。请帮忙。
感谢。
答案 0 :(得分:-1)
<强> jQuery的:强>
$('#clickme').click(function() {
$('#getInHere').append('text');
});
jsFiddle Live示例: http://jsfiddle.net/P89sa/