4.如何将我的系统字体保存为文件?(对于服务器端开发略有小用)
(1)如果你的服务器的字体配置与你现有电脑字体配置一样的话,使用Javascript脚本,然后COPY至写字板或记事本,再保存。
接着上面步骤继续往下做:
(续)步骤一:将以下代码放在<Body>区内:
以下为引用的内容: <textarea name="FontList" id="FontList" cols="35" rows="20" id="FontList" style="position:absolute; left:0px; top:0px; z-index:10000"></textarea> |
以下为引用的内容: <Script> // "blessingWords_FontFamily_DL" 需要改成你自己获取系统字体下拉菜单的名字(如果你已经改过的话) var dropDownListName = "blessingWords_FontFamily_DL"; function updateFontList() { var list=""; var blessingWords_FontFamily_DL = document.all[dropDownListName]; for(i=0; i <blessingWords_FontFamily_DL.options.length; i++) { list += '<OPTION VALUE="' + blessingWords_FontFamily_DL.options[i].text + '">'+ blessingWords_FontFamily_DL.options[i].text + '</OPTION>\r\n'; } document.all("FontList").value = list; } </Script> |
以下为引用的内容: onmouseenter="fontFacesMenuEnter(this, 'dlgHelper');updateFontList();" |