JS如何在页面中插入HTML代码

JavaScript012

JS如何在页面中插入HTML代码,第1张

步骤

1、新建一网页文件“sample.html",用记事本或其它文本编辑软件(如UltraEdit)打开,输入如图所示的HTML代码。该网页文件包括一个蓝色的字符串,一个按钮和一个文本框。

2、JS代码可插入到”head"标签之间。编写Javascript代码,代码内容如图所示,并将该段代码复制到网页文件”sample.html“中标签”<head>"和“</head>之间,然后查看网页文件的显示内容。

<!DOCTYPE html>

<html>

<head>

<script src="jquery.js"></script>

<div id="dictionary">

</div>

<div class="letters">

<div class="letter" id="letter-a">

<h3><a href="entries-a.html">A</a></h3>

</div>

<div class="letter" id="letter-b">

<h3><a href="entries-a.html">B</a></h3>

</div>

<div class="letter" id="letter-c">

<h3><a href="entries-a.html">C</a></h3>

</div>

<div class="letter" id="letter-d">

<h3><a href="entries-a.html">D</a></h3>

</div>

<!-- and so on -->

</div>

</head>

<body >

<script>

$(document).ready(function() {

$('#letter-c a').click(function(event) {

event.preventDefault()

$.getScript('c.js')

})

})

</script>

</body>

</html>

将写好的c.js文件放置同一个目录下面

var entries = [

{

"term": "CALAMITY",

"part": "n.",

"definition": "A more than commonly plain and..."

},

{

"term": "CANNIBAL",

"part": "n.",

"definition": "A gastronome of the old school who..."

},

{

"term": "CHILDHOOD",

"part": "n.",

"definition": "The period of human life intermediate..."

}

//省略的内容

]

var html = ''

$.each(entries, function() {

html += '<div class="entry">'

html += '<h3 class="term">' + this.term + '</h3>'

html += '<div class="part">' + this.part + '</div>'

html += '<div class="definition">' + this.definition + '</div>'

html += '</div>'

})

$('#dictionary').html(html)

//$('#dictionary').append(html)

这里的$('#dictionary').html(html)可以直接将需要的代码放入到指定的div内  (<div id="dictionary">)

也可以通过$('#dictionary').append(html)将代码附加到指定的div内  (<div id="dictionary">)

1、首先,找到我们需要修改的js文件。

2、js文件直接可以用记事本打开,但是,使用记事本打开格式非常乱,不方便我们查看和修改。

3、这里,我们使用Intellij IDEA打开js文件。如图,格式很规范,内容我们可以一目了然。

4、然后,我们通过快捷键【Ctrl】+【F】快速定位到我们需要修改的位置。

5、回到html文件,在按钮输入框后面创建一个script标签,然后添加用来引入addJs.js文件的addJs事件。

6、保存html文件后使用浏览器打开,点击按钮即可看到出现一个弹出。