前端学习笔记

1.js根据选中的复选框获取该行内容

var check=$("input[name='checkbox']:checked");//选中的复选框,name为checkbook
		check.each(function(){
			var row=$(this).parent("td").parent("tr");
			var name=row.find("[name='name']").html();//td的name为name与phone
			var phone=row.find("[name='phone']").html();
			alert("asdasd"+name)
			//console.info(name+":"+phone); 打印浏览器控制台
		});

2.js获取表格某行某列的值

var tableId = document.getElementById("table");
alert("1行2列的值为:"+tableId.rows[1].cells[2].innerHTML)//1行2列

3.js获取项目根目录

//获取项目根路径 如:http://localhost:8083/uimcardprj
function getRootPath() {
	var curWwwPath = window.document.location.href;
	var pathName = window.document.location.pathname;
	var pos = curWwwPath.indexOf(pathName);
	var localhostPaht = curWwwPath.substring(0, pos);
	var projectName = pathName
		.substring(0, pathName.substr(1).indexOf('/') + 1);
	return (localhostPaht + projectName);
}

4.清空表单

//在需要清空的地方调用
submit(reset);
//清空表单 回调
function reset(){
	$('#joinform').reset(); //joinfrom为表单名
}
function submit(callback){
	document.getElementById("joinform").submit();
	callback();
}

 

你可能感兴趣的:(项目知识点)