アットウィキロゴ

mizuki

function sample() {
 
 
  str1="<table class=\"mdl-data-table mdl-js-data-table mdl-data-table--selectable mdl-shadow--2dp\">";
  str2="<th class=\"mdl-data-table__cell--non-numeric\">";
  str3="<td class=\"mdl-data-table__cell--non-numeric\">";
 
    str=str1;
    str=str+"<thead>";
    str=str+"<tr>";
    str=str+str2+"猫</th>";
    str=str+"<th>犬</th>";
    str=str+"<th>水</th>";
    str=str+"</tr>"
  str=str+"</thead>";
 
  str=str+"<tbody>";
   str=str+"<tr>";
   str=str+str3+"Acrylic (Transparent)</td>";
   str=str+"<td>25</td>";
   str=str+"<td>$2.90</td>";
    str=str+"</tr>";
 
str=str+"</table>";
 
 
 
 $("#memo").html(str);
 
 
 
            }
 
最終更新:2016年01月16日 02:49