想把这个页面的产品数据复制下来,http://www.chinaqingnian.net/?m=product
点击是触发onclick事件,浮动开一个窗口 <a href="javascript:void(0);" onclick="showproduct(2993)">000 330 41 35</a>,看源代码还是看不到浮动窗口的数据。
请问要怎样看这个浮动窗口的真实urlshowproduct事件
function showproduct(pid){
var panel=arguments[1]?arguments[1]:0;
$.get("/USITE/Function/showproduct.php",{user:user,l:ver,m:pid,random:Math.random()},function(data){
$('select').addClass("hidden");
$('<div id="POPproview"></div>').appendTo("body");  
$('<div id="MUSK"></div>').appendTo("body");  
$("div#MUSK").css("top",0);
$("div#MUSK").css("left",0);
$("div#MUSK").css({width:$(document).width(),height:$(document).height()});
$("div#POPproview").html(data);
$("div#POPproview").css("top",$(document).scrollTop()+$(window).height()/2-600/2);
$("div#POPproview").css("left",$(window).width()/2-800/2);
$("div#POPproview").css({width:800,height:600});
$("div#POPproview").fadeIn("slow");
$("div#POPproview").draggable({ handle: '.title' });
$('.tabs').tabs('option', 'selected',panel);
//车型树的点击动作
$('.TreeTable tr.subtitle').click(function(){
temp=$(this).attr('id');
oheight=$('.TreeTable').height();
$('.TreeTable tr.'+temp).toggle();
});
//点击MUSK关闭层
$('#MUSK').click(function(){
divclose('POPproview');
});
//鼠标移过变色
$(".TreeTable tr").hover(
function(){
$(this).addClass('hover');
},
function () {
$(this).removeClass("hover");
}
);
});
}