将 tabindex 和 class 设置为 FCK 编辑器
我在将 tabindex 设置为 FCK editor 时遇到问题。我正在使用以下 php 代码作为 fck 编辑器
require_once("".$abspath."fckeditor/fckeditor.php");
$oFCKeditor = new FCKeditor("shippinginfo") ;
$oFCKeditor->BasePath = "../fckeditor/" ;
$oFCKeditor -> Height = '300';
$oFCKeditor -> Width = '900';
$oFCKeditor->Value = stripslashes(str_replace("\\","",$product_shippinginfo));
$oFCKeditor->Create() ;
,我也喜欢 class 到 fck 编辑器,
任何人都有这个想法
i have problem to set tabindex to FCK editor . i am using following php code for fck editor
require_once("".$abspath."fckeditor/fckeditor.php");
$oFCKeditor = new FCKeditor("shippinginfo") ;
$oFCKeditor->BasePath = "../fckeditor/" ;
$oFCKeditor -> Height = '300';
$oFCKeditor -> Width = '900';
$oFCKeditor->Value = stripslashes(str_replace("\\","",$product_shippinginfo));
$oFCKeditor->Create() ;
and i also like to class to fck editor
any one have the idea
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
顺便说一句,我谷歌并找到下面的解决方案...尝试
添加类
参考
by the way i google and find below solution... try this
to add Class
reference
通过textarea替换方法我们可以设置
tabindex
。所以它有效,谢谢!by textarea replacing method we can set
tabindex
. so it works thanks !