⽤JavaScript往DIV动态添加内容<div id="show"></div>
要填充的数据为: 这是⼀个测试例⼦.
jquery:
$(function(){
var data = '这是⼀个测试例⼦';
$('div:#show').html(data);
});
js:
var data = '这是⼀个测试例⼦';
我做的案例:
脚本:
<script type="text/javascript">
function show(string)
有关尊严的名言
{
杨幂袭胸var ElementById("content");
content.innerHTML=string;
曹格自曝患躁郁症}
</script>
四个一健康管理是什么意思content是div的ID号。
前台:
<input id="Button2" type="button" value="button" onclick="return show('hello world!')" />
1<html>
2<head>
3<title>test page</title>
4<script type="text/javascript">
5function show(string)
6            {
7//var data = '这是⼀个测试例⼦';
8                ElementById('show').innerHTML = string;
9            }
10</script>
11</head>大s资料
12<body>
13<a href="javascript:void(0)" onclick="show('hello world!')">打开</a>
门有哪些明星
14<div id="show"></div>
15</body>
16</html>
View Code