1) css
.ul-station-list-css {
text-shadow: none;
color: white;
font-weight: normal;
font-family: sans-serif;
}
.ui-station-list {
text-shadow: none;
color: white;
font-size: 13px;
font-weight: normal;
font-family: sans-serif;
}
2) Apply jQuery Html
$.each(info, function (i, value) {
...
li +=
'<li><a href="#" id="' + i + '" class="info-go"' + ' style="background:' + statusColor + '">'
+ '<p class="ul-station-list-css"><big>'+value.StationName+' 측정소</big>' + ' (' + value.DataTime + ')</p>'
//+ '<p class="ul-station-list">'+value.Addr+' ('+value.DataTime+')</p>'
+ '<p class="ui-li-aside ul-station-list-css">' + statusText + '(' + pmValue +')</p>'
+ '</a></li>';
});
'Web(HTML5)' 카테고리의 다른 글
LEARN TO CODE WITH 21 OF THE BEST WEB DEVELOPMENT COURSES (0) | 2018.06.01 |
---|---|
크롬에서 구글 검색이 느릴 경우 해결 방법 (0) | 2017.10.25 |
Basic HTML Template (0) | 2017.09.23 |
jquery mobile popup show programmatically (0) | 2017.09.11 |
How to check if a variable is an integer in JavaScript? (0) | 2017.09.10 |