javaWeb常用知识点

1.在js中局部刷新DIV
	$("html页面中的某个标签").html("");//清除当前样式下的所有组件
	var tr="自定义内容";
	$("html页面中的某个标签").append(tr);//将自定义内容写入标签中
	例如:
		$(".heartrate-value").html("");//清除class标签为heartrate-value名称里面的内容
		var tr=''+(n+1)+''+
					''+value.times+''+
					''+(value.heartrate)+'';//自定义表格内容
		$(".heartrate-value").append(tr);//激昂自定义内容写入都当前样式内
	2.使用attr动态传值给前端		
		$("#nickName").attr("value",123456);//将拥有id标签等于nickName得文本框,将value的属性值更改为123456
	3.session传值
		var account=123456;
		sessionStorage.setItem("account",account);//将account=123456存入session中,其中键值对key为account,value为123456
		var account=sessionStorage.getItem("account");//获取session中key为account的值,

你可能感兴趣的:(HTML,JavaWeb)