将类添加到超链接
我的 CMS 不允许我将厚盒类添加到内联超链接中。当我保存时,它只是不断地删除类。
有什么方法可以强制执行该类或解决方法吗?
谢谢
R
My CMS wont let me add a thickbox class to a hyperlink inline. It just keeps stripping out the class when I save.
Are there any ways to enforce tis class or a workaround?
Thanks
R
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我假设您正在通过所见即所得编辑器(例如 TinyMCE 或类似的)编辑单个页面。您必须检查编辑器的设置并确保它不会从您的内容中删除
class
属性。这将修复该问题,前提是在提交内容时 PHP 中未删除这些属性。I assume you're editing a single page via a WYSIWYG editor, such as TinyMCE or similar. You have to check the editor's settings and make sure it won't strip the
class
attribute from your content. This will fix it, provided that the attributes aren't stripped in PHP on content submission.如果您在源/html 模式下尝试过,请尝试使用链接编辑器应用该类,反之亦然。
另外,我知道其中一些编辑器有一些不应该遍历的内容标签。无法提供帮助,因为我不知道您使用的 CMS。
Try to apply the class with the link editor if you've tried in source/html mode, or vice versa.
Also, I know some of these editors have some tags for content it shouldn't traverse through. Can't help since I don't know the CMS you use.
如果您有链接的 ID,则可以使用这样的代码:
否则,您可以设置自定义属性而不用 CMS 删除它们吗?
If you have ID to the link you can have such code:
Otherwise can you set custom attributes without CMS removing them?