Browse Source

专家信息修改页面中增加删除的bug已解决

luyanan 8 years ago
parent
commit
6072ff0d34
1 changed files with 21 additions and 20 deletions
  1. 21 20
      src/main/webapp/js/information.js

+ 21 - 20
src/main/webapp/js/information.js

210

210

211

211

212

212

213
/*更换头像动画*/
213
/*锟斤拷头锟今动伙拷*/
214
$(".head-left").hover(function(){
214
$(".head-left").hover(function(){
215
	$(".replace-photo").animate({"bottom":"0px"});						   						   
215
	$(".replace-photo").animate({"bottom":"0px"});						   						   
216
	},function(){
216
	},function(){
217
	$(".replace-photo").animate({"bottom":"-50px"});	
217
	$(".replace-photo").animate({"bottom":"-50px"});	
218
})
218
})
219
/*专家信息左导航背景点击切换*/
219
/*ר����Ϣ�󵼺���������л�*/
220
$(".subsidebar").click(function(){
220
$(".subsidebar").click(function(){
221
	$(this).addClass("subcolor").siblings().removeClass("subcolor");						  
221
	$(this).addClass("subcolor").siblings().removeClass("subcolor");						  
222
});
222
});
223
/*点击滚动到指定位置*/
223
/*���������ָ��λ��*/
224
$(".subsidebar").click(function(){
224
$(".subsidebar").click(function(){
225
	var index=$(this).index()-1;
225
	var index=$(this).index()-1;
226
	var offset=$(".introduction").eq(index).offset();
226
	var offset=$(".introduction").eq(index).offset();
227
	$("body").animate({ 
227
	$("body").animate({ 
228
		scrollTop:offset.top-80 //让body的scrollTop等于pos的top,就实现了滚动 
228
		scrollTop:offset.top-80 //锟斤拷body锟斤拷scrollTop锟斤拷锟斤拷pos锟斤拷top锟斤拷锟斤拷实锟斤拷锟剿癸拷锟斤拷 
229
		},1000); 
229
		},1000); 
230
	})
230
	})
231

231

232

232

233
/*编辑标签变色*/
233
/*锟洁辑锟斤拷签锟斤拷色*/
234
$("#container .edit").hover(function(){
234
$("#container .edit").hover(function(){
235
	$(this).addClass("edit-position-left")	
235
	$(this).addClass("edit-position-left")	
236
	},function(){
236
	},function(){
237
	$(this).removeClass("edit-position-left")			
237
	$(this).removeClass("edit-position-left")			
238
		});
238
		});
239
/*辑*/
239
/*锟洁辑*/
240
$("#container .edit").click(function(){
240
$("#container .edit").click(function(){
241
	var edit =$(".edit").index(this);
241
	var edit =$(".edit").index(this);
242
	$(".right-title span").eq(edit-1).css("color","#3e3e3e");
242
	$(".right-title span").eq(edit-1).css("color","#3e3e3e");
243
	$(".infor-browse").eq(edit).hide();
243
	$(".infor-browse").eq(edit).hide();
244
	$(".modifybox").eq(edit).show();
244
	$(".modifybox").eq(edit).show();
245
	/*取消修改*/
245
	/*取锟斤拷锟睫革拷*/
246
	$(".close").click(function(){
246
	$(".close").click(function(){
247
	$(".modifybox").eq(edit).hide();
247
	$(".modifybox").eq(edit).hide();
248
	$(".infor-browse").eq(edit).show();
248
	$(".infor-browse").eq(edit).show();
249
	
249
	location.reload(true);
250

250
	});
251
	});
251
						  
252
						  
252

253

253
/*添加学科*/
254
/*���ѧ��*/
254
$("#subjectAdd").click(function(){
255
$("#subjectAdd").click(function(){
255
	var val=$("#subject").val();
256
	var val=$("#subject").val();
256
	$("#subjectList").append("<div class='acad'>"+ val +"<span class='remove'><img src='images/move.png'></span></div>")							
257
	$("#subjectList").append("<div class='acad'>"+ val +"<span class='remove'><img src='images/move.png'></span></div>")							
257
	})
258
	})
258
/*删除学科*/
259
/*删锟斤拷学锟斤拷*/
259
$("#subjectList").on("click",".remove",function(){
260
$("#subjectList").on("click",".remove",function(){
260
	$(this).parent().remove();
261
	$(this).parent().remove();
261
	})
262
	})
262
/*添加行业*/
263
/*�����ҵ*/
263
$("#industryAdd").click(function(){
264
$("#industryAdd").click(function(){
264
	var val=$("#industry").val();
265
	var val=$("#industry").val();
265
	$("#industryList").append("<div class='acad'>"+ val +"<span class='remove'><img src='images/move.png'></span></div>")							
266
	$("#industryList").append("<div class='acad'>"+ val +"<span class='remove'><img src='images/move.png'></span></div>")							
266
	})
267
	})
267
/*删除行业*/
268
/*删锟斤拷锟斤拷业*/
268
$("#industryList").on("click",".remove",function(){
269
$("#industryList").on("click",".remove",function(){
269
	$(this).parent().remove();
270
	$(this).parent().remove();
270
	})
271
	})
271

272

272
/*添加研究方向*/
273
/*��������*/
273
$("#researchAreaAdd").click(function(){
274
$("#researchAreaAdd").click(function(){
274
	var researchArea=$("#researchArea").val();
275
	var researchArea=$("#researchArea").val();
275
	$("#researchAreaList").append("<div class='list'><span class='like'>0</span><span class='ra'>"+ researchArea +"</span><span class='remove'><img src='images/move.png'></span></div>")							
276
	$("#researchAreaList").append("<div class='list'><span class='like'>0</span><span class='ra'>"+ researchArea +"</span><span class='remove'><img src='images/move.png'></span></div>")							
280
	$(this).parent().remove();
281
	$(this).parent().remove();
281
	})		
282
	})		
282

283

283
/*应用行业添加其它*/
284
/*Ӧ����ҵ�������*/
284
$("#other").click(function(){
285
$("#other").click(function(){
285
 $(".addbox").toggle();						   
286
 $(".addbox").toggle();						   
286
})
287
})
287

288

288

289

289
/*鼠标经过显示修改/删除图标*/
290
/*��꾭����ʾ�޸�/ɾ��ͼ��*/
290
$("#eduBgList").on("mouseover mouseout",".eg",function(even){
291
$("#eduBgList").on("mouseover mouseout",".eg",function(even){
291
	if(event.type == "mouseover"){
292
	if(event.type == "mouseover"){
292
		$(this).find("span").show();
293
		$(this).find("span").show();
303

304

304

305

305

306

306
/*鼠标经过显示修改/删除图标*/
307
/*��꾭����ʾ�޸�/ɾ��ͼ��*/
307
$("#timeJobList").on("mouseover mouseout",".tj",function(even){
308
$("#timeJobList").on("mouseover mouseout",".tj",function(even){
308
	if(event.type == "mouseover"){
309
	if(event.type == "mouseover"){
309
		$(this).find("span").show();
310
		$(this).find("span").show();
380

381

381

382

382

383

383
/*删除列表
384
/*删锟斤拷锟叫憋拷
384
$(".remove").click(function(){
385
$(".remove").click(function(){
385
	$(this).parent().remove();
386
	$(this).parent().remove();
386
	})*/
387
	})*/
387
/*至今按钮*/
388
/*锟斤拷锟斤拷钮*/
388
$(".present").click(function(){
389
$(".present").click(function(){
389
	var date = $(".present").index(this);
390
	var date = $(".present").index(this);
390
	$(".datebox").eq(date).find(".ago").remove();
391
	$(".datebox").eq(date).find(".ago").remove();
391
	$(".datebox").eq(date).css("width","326px");
392
	$(".datebox").eq(date).css("width","326px");
392
	})
393
	})
393

394

394
/*模拟Select选择框*/
395
/*ģ��Selectѡ���*/
395
 $(".input_select").click(function(){ 
396
 $(".input_select").click(function(){ 
396
      var ul = $(this).next();
397
      var ul = $(this).next();
397
      if(ul.css("display")=="none"){ 
398
      if(ul.css("display")=="none"){ 
413

414

414
})
415
})
415

416

416
/*日期*/
417
/*锟斤拷锟斤拷*/