有時在iframe的資料處理後,會想要讓iframe所在的父視窗的元件也做資料更新
用以下方法就可以達到
ObjectID: 父視窗元件的ID
$(“#ObjectID”,parent.document.body).val(‘new Value’);
$(“#ObjectID”,parent.document.body).html(‘new Html’);
$(“#ObjectID”,parent.document.body).css(‘color’,’#3366fff’);
有時在iframe的資料處理後,會想要讓iframe所在的父視窗的元件也做資料更新
用以下方法就可以達到
ObjectID: 父視窗元件的ID
$(“#ObjectID”,parent.document.body).val(‘new Value’);
$(“#ObjectID”,parent.document.body).html(‘new Html’);
$(“#ObjectID”,parent.document.body).css(‘color’,’#3366fff’);