1 首先将要传递的数据传到本页面:
function confirmIT(){
var num=0;
var per;
var pers="";
$('input[type="checkbox"]').each(function () {
if ($(this).attr('checked')) {
per = $(this).attr('value');
pers += per+",";
num++;
}
});
if(num==0 && $("#otherIT").val()==""){
alert("请选择IT应用分类!");
return;
}
if($("#otherIT").val()!=""){
if(confirm("您确定要添加其他的IT应用分类么?")){
opener.transformIT(pers,$("#otherIT").val());
}else{
opener.transformIT(pers.substr(0,(pers.length)-1));
}
}else{
opener.transformIT(pers.substr(0,(pers.length)-1));
}
document.getElementById("addITForm").action="/html/call/que_call_add.tan3.jsp";
window.close();
}
2 在父页面中接收数据:
function transformIT(per,other){
url = "/html/call/viewCatNameCallMarketContactAction.do?per="+per;
$.get(url,function call(data){
if(other==undefined){
document.getElementById("id07").value = data;
}else{
document.getElementById("id07").value = data+","+other;
}
});
}
posted on 2012-07-09 15:27
canry Tong 阅读(148)
评论(0) 编辑 收藏 所属分类:
jsp