2014-11-04 86 views
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/

預先感謝您的幫助!

回答

1

就像名稱和ID一樣,你應該可以使用類似這樣的東西。

$('iframe[name=select_frame]').contents().find('#select_name').val(); 
+0

非常感謝您的幫助,它工作正常:))) – user3472479 2014-11-04 20:34:55