JavaScript 使用innerHTML从HTML文件中提取信息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 使用innerHTML从HTML文件中提取信息相关的知识,希望对你有一定的参考价值。

/*Executed on click. Passes the url to the function. Function opens the URL then
 *the parseResponse function is called 
 */
function grabFile(file) {
	var request = getHTTPObject();
	request.onreadystatechange = function() {
		parseResponse(request);//this is what happens once complete
	}
	request.open("GET",file,true);
	request.send(null);
}
/*Once the request state is complete and the file exists, it grabs the results
 * div, and inserts the response text and innerHTML.
 */
function parseResponse(request) {
	if(request.readyState == 4){
		if(request.status == 200 || request.status == 304){
			var results = document.getElementById("results");
			results.innerHTML = request.responseText;
		} else {
			alert("Something Broke!");
		}
	}
}

以上是关于JavaScript 使用innerHTML从HTML文件中提取信息的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript 从入门到放弃事件委托和使用innerHTML添加元素

通过 JavaScript 设置锚标签的 innerHTML

javascript按钮innerHTML

JavaScript:触发事件恢复 innerHtml 属性

将String作为参数传递给Javascript中对象的InnerHtml属性

Javascript |按钮未使用 .innerHTML 提交表单