2009年8月16日 星期日

[jQuery]用jQuery控制 iframe 內的元素

How to access iframe in jQuery

jQuery( function() {
$('#frame1').load( function(){
$(this.contentDocument).find('body').html('This frame was modified with jQuery!')
});