jQuery(document).ready(function($){
function show_interest_top100(){
var htmlCode = ''+
'
'+
''+
'
'+
'
'+
'
'+
'
'+
'
'+
' - 傻瓜
'+
' - (162cm/50kg/魔羯座/O)
'+
' - 兴趣:计算机网络, 投资理财, 游山玩水
'+
' - 寻找:男女朋友, 结婚对象
'+
'
'+
'
'+
'
'+
'
';
$("#interest").html(htmlCode);
//点击YES按钮
$(".btn_yes").click(function (){
var userNo = $(this).attr("user_no");
$.ajax({
type: "POST",
url: "/interest/interest_handle.php?act=saveMyChoose",
data: "user_no="+userNo,
success: function(rtnStr){
window.location = "http://www.ipart.cn/?312#intop";
}
});
return false;
});
}
show_interest_top100();
});