<html>
<head>
<script>
function
insert(){
var
insertText
=
"<table><tr><td>any
thing</td></tr></table>"
document.getElementById("insert").innerHTML(insertText)
}
</script>
</head>
<body>
<button
onclick="insert()">Insert</button>
<div
id="insert"></div>
</body>
</html>
比如说,现在有一个外部的html文件test.html,内容是:
<input type="button" value="外部文件按钮" /><p>外部文件p标签</p>
现在在这个网页中加载test.html中的内容,这个网页的源码为:
<html><head>
<meta http-equiv="Content-Type" content="text/html charset=utf-8" />
<title></title>
<script src="../Scripts/jquery-1.8.2.min.js"></script>
<script type="text/javascript">
function GetHtml() {
$.ajax({
type: "POST",
url: 'Handler.ashx', //提交到一般处理程序请求数据
success: LoadHtml
})
}
function LoadHtml(data) {
var div = document.getElementById("out")
div.innerHTML = data//注意这里,要是想展示test.heml中的内容就用这个,如果显示源代码则用innerText
}
</script>
</head>
<body>
<input type="button" value="加载外部Html文件内容" onclick="GetHtml()" />
<div id="out">
</div>
</body>
</html>
上面脚本中写的Handler.ashx是一个一般处理程序,代码是这样的:
public void ProcessRequest(HttpContext context){
context.Response.ContentType = "text/plain"
string html = GetOutsideContent("test.html")
context.Response.Write(html)
}
public static string GetOutsideContent(string Path)
{
try
{
StreamReader sr = new StreamReader(HttpContext.Current.Server.MapPath(Path), System.Text.Encoding.GetEncoding("utf-8"))
string content = sr.ReadToEnd().ToString()
sr.Close()
return content
}
catch
{
return "错误"
}
}
public bool IsReusable
{
get
{
return false
}
}
这是asp.net下的,如果你是使用其他语言的都大同小异,从后台读取文件中的内容,使用Ajax获取后台传递的文件中的内容,思路就是这样。
所谓动态写入方法就是源文件代码中原来没有内容或者需要重新改变此处的要显示的文字或内容,需要用JavaScript代码来实现。动态写入是一种很常见常用的方法。1、用innerHTML写入html代码:<div id="abc"></div><script>document.getElementById("abc").innerHTML="要写入的文字或内容"</script>2、appendChild() 方法:<ul id="myList"><li>Coffee</li><li>Tea</li></ul><button onclick="myFunction()">点击向列表添加项目</button><script>function myFunction(){var node=document.createElement("LI")var textnode=document.createTextNode("Water")node.appendChild(textnode)document.getElementById("myList").appendChild(node)}</script>欢迎分享,转载请注明来源:内存溢出
评论列表(0条)