aboutsummaryrefslogtreecommitdiffstats
path: root/97suifangqa/apps/indicator/static/javascripts/index_desc.js
blob: 49771ea2c147fa3b9b746b1fb1704bb4b3ce10eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$(document).ready(function(){
	//点大叉、继续关注按钮,关闭弹层页面
	$(".index_desc_close").bind("click", function(){
		parent.TB_remove();
		return false;
	});
	
	//前往医学知识库
	$(".go_library_btn").bind("click", function(){
		parent.delete_card();
		parent.TB_remove();
		
		parent.window.location.href = "http://demo.97suifang.com/blog/1/source";
		return false;
	});
});