Created
January 31, 2017 13:06
-
-
Save vigikaran/2bd9af5cfaaf0b2588aa7fde0e2613e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.getJSON( "/notice?type=json", function( data ) { | |
var items = []; | |
$.each( data, function(e) { | |
items.push('<a href="'+e.url+'" target="_blank"><h2 class="cd_notice_tit">'+e.title+'</h2><div class="cd_notice_detail"><div class="cd_not_img_dv"><span class="cd_ntce_main_name">'+e.name+'</span> | |
<div class="cd_ntce_main_div"><div class="cd_n_img"><img src="'+e.img+'" alt=""></div><div class="cd_nt_img_lft"><div class="cd_name">'+e.born+'</div> | |
<div class="cd_name">'+e.live+'</div><div class="cd_name">'+e.date+'</div></div></div></div></div></a></div><div class="cd_notice_box"> | |
'); | |
}); | |
$("#notice").html(items.join("")); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment