我想通過jQuery將TypeKit字體加載到CKEditor的實例中。這裏是我的代碼:如何使用jQuery將TypeKit字體加載到CKEditor實例中
$('.ck-blog textarea').ckeditor(function() {
CKEDITOR.scriptLoader.load(
"http://use.typekit.com/zku8fnp.js",
function (success) {
Typekit.load();
alert(success); },
null,
true);
},
{
resize_enabled: false,
skin: 'kama',
height: '500px',
toolbarCanCollapse: false,
toolbar_Full: toolbar,
forcePasteAsPlainText: true,
autoGrow_onStartup: true,
templates_replaceContent: false,
extraPlugins: 'autogrow,wordcount',
removePlugins: 'resize',
contentsCss: '/areas/admin/content/css/ckeditor-blog.css',
templates_files: ['/areas/admin/scripts/ckeditor-templates.js'],
autoParagraph: false
});
我收到TypeKit應該加載後的成功警報,但我沒有看到字體加載。任何想法我可能做錯了什麼?
完美的作品! – Sarvesh 2013-01-06 05:09:36
我似乎得到了403錯誤 – Neil 2013-05-28 05:03:42
因爲CKEditor中的內容在IFRAME中,我得到了403錯誤。您在套件設置中設置了哪些域名? – Neil 2013-05-28 07:09:04