2013-06-19 41 views

回答

0

首先,綁定上點擊JS事件上的選擇按鈕

$('#search_form_select').click(function(){sendToParent();}) 

其次,當點擊選擇按鈕,找到所有選中的行與設定值父窗口

function sendToParent() { 
    $("table.list tr[class!=listViewThS1]:has(input:checked)").each(function() { 
     $(window.opener.document).find('#description').val($(this).find('td:eq(2)').text()); 
    });   
} 
相關問題