jQuery执行脚本,在指定的div添加(附加)html代码

jQuery中需要执行指定的js代码方法




 

A

B

C

D

将写好的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 += '
'; html += '

' + this.term + '

'; html += '
' + this.part + '
'; html += '
' + this.definition + '
'; html += '
'; }); $('#dictionary').html(html); //$('#dictionary').append(html);
这里的$('#dictionary').html(html);可以直接将需要的代码放入到指定的div内  (
)

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

)


你可能感兴趣的:(jQuery执行脚本,在指定的div添加(附加)html代码)