0
我可以使用當前的代碼從textarea
中獲取文本。但是,如果在iframe中包含textarea
,那麼我希望這樣做?在iframe中獲取textarea值
我當前的代碼是
<script>
function get_text() {
var value = $('textarea').val();
$('#show_value').html(value);
}
</script>
<textarea></textarea>
<div id="show_value"></div>
<a href="#" onclick="get_text()">Click me to show text</a>
我試着像編輯下面的代碼,代碼,但沒有奏效
<script>function get_text() {
var value = $('iframe textarea').val();
$('#show_value').html(value);
}
</script>
<iframe src='http://check0909.vv.si/s.html'></iframe>
<div id="show_value"></div>
<a href="#" onclick="get_text()">Click me to show text</a>
你可以在這裏看到我的演示http://check0909.vv.si/
預先感謝您的幫助!
非常感謝您的幫助,它工作正常:))) – user3472479 2014-11-04 20:34:55