jquery弹出窗口选择回写值

$(document).ready(function(){    
$('.sel').dblclick(function(){
    var nowid=$(this).attr('id');    
    window.opener.document.getElementById('xxbid').value = document.getElementById('id_'+nowid).value;//id
    window.opener.document.getElementById('xxbgcmc').value = document.getElementById('xmmc_'+nowid).value;//项目名称
    
    $("input[name='col64289']",window.opener.document).val($('#wtdw_'+nowid).val());//委托单位
    $("input[name='col64291']",window.opener.document).val($('#wtdlxr_'+nowid).val());//联系人
    $("input[name='col64292']",window.opener.document).val($('#wtdwdh_'+nowid).val());//电话
    $("input[name='col64294']",window.opener.document).val($('#xmmc_'+nowid).val());//项目名称2
    $("input[name='col64295']",window.opener.document).val($('#xmdz_'+nowid).val());//项目地址
    $("input[name='col101768']",window.opener.document).val($('#ywy_'+nowid).val());//业务员
    $("input[name='col101767']",window.opener.document).val($('#ywyid_'+nowid).val());//业务员id
    window.close();
    
})

$('#btnSearch').click(function(){
    if($('#tbWTDBH').val()==''){        
        alert('请输入搜索内容!');        
        $("#tbWTDBH").focus().select();
        return false;
    }
    
})    
})

 

posted @ 2018-07-15 15:26  阿锋佬  阅读(2246)  评论(0编辑  收藏  举报