利用者:Crayonkun/common.js
注意: 保存後、変更を確認するにはブラウザーのキャッシュを消去する必要がある場合があります。
- Firefox / Safari: Shift を押しながら 再読み込み をクリックするか、Ctrl-F5 または Ctrl-R を押してください (Mac では ⌘-R)
- Google Chrome: Ctrl-Shift-R を押してください (Mac では ⌘-Shift-R)
- Microsoft Edge: Ctrl を押しながら 最新の情報に更新 をクリックするか、Ctrl-F5 を押してください。
$("[lang^='zh-hans']").each(function(){
if(this.style["font-family"] ==""){this.style["font-family"] = "Source Han Sans CN";}
});
$("[lang^='ja']").each(function(){
if(this.style["font-family"] ==""){this.style["font-family"] = "Source Han Sans JP";}
});
$("[lang^='ko']").each(function(){
if(this.style["font-family"] ==""){this.style["font-family"] = "Source Han Sans KR";}
});
$("[lang^='zh-hant']").each(function(){
if(this.style["font-family"] ==""){this.style["font-family"] = "Source Han Sans TW";}
});
$("[lang^='ru']").each(function(){
if(this.style["font-family"] ==""){this.style["font-family"] = "Source Han Sans CN";}
});