$(function(){
$("#telSs").click(function(){
var value=$("input[name='telHsw']").val()
$.ajax({
type:"post",
url:"../../select_customer_by_tel.do?hsw="+value,
cache:false,
dataType:"json",
success:function(data){
alert(data.customerID);
window.open("../../pages/customer/showCustomerTel.jsp?customerID="+data.customerID,"rightFrame");
}
});
});
});
data里面有多个值 我想都传到showCustomerTel.jsp页面,我这里只传了一个ID值
谁能说具体点呀 大神呢
window.parent 可以获取到 他爸爸
success:function(data){
window.ajaxData = data
alert(data.customerID);
window.open("../../pages/customer/showCustomerTel.jsp?customerID="+data.customerID,"rightFrame");
}
然后在打开的页里就可以
window.parent.ajaxData
楼上不都给你了么?看粗体字。。。
在跳转页面后面以键值对的方式用&连接 一一传过去比较靠谱