https://stackoverflow.com/q/5065542/1716774
同じ機能をフィドルに適用したい
HTML
<select id="styleFont">
<option value="0">Myraid Pro</option>
<option value="1">Sans ref</option>
<option value="2">Times New Roman</option>
<option value="3"> Arial</option>
</select>
<br>
<textarea id="custom_text"></textarea>
CSS
#custom_text{ resize: none;}
脚本
$("#styleFont").change(function () {
var id =$('#styleFont option' + ':selected').text();
$("#custom_text").css('font-family',id);
});
を使用して、選択ボックスにgoogleAPIフォントを追加しようとしました
https://www.googleapis.com/webfonts/v1/webfonts?key=YOUR-API-KEY
これを私のフィドルに追加する方法