ckeditor 有没有办法改变链接的内部 html?
我想用ckeditor的链接插件插入自定义链接。它已经可以工作了,但我希望锚标记的内部 html 不是链接地址。我遵循了本教程: http://blog.xoundboy.com/?p=393
喜欢所以:
<a href="www.example.com">Click here</a>
现在内部 html 与 href-attribute 相同:
<a href="www.example.com">www.example.com</a>
据我所知,普通 url 也没有选项可以执行此操作。但如果可能的话,我会指出正确的方向。希望有人可以帮忙。
I want to insert customs links with the link plugin of ckeditor. It already works but I want that the inner html of the anchor tag is not the link address. I followed this tutorial: http://blog.xoundboy.com/?p=393
Like so:
<a href="www.example.com">Click here</a>
Right now the inner html is the same like the href-attribute:
<a href="www.example.com">www.example.com</a>
As far as I can tell there is no option for normal urls to do this also. But if it's possible I would appriciate a pointer in the right direction. Hope somebody can help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过输入内部 HTML 所需的文本,选择它,然后单击链接按钮来捕获 URL?
这样你的内部 HTML 就应该正确设置了。
Have you tried to type the text you want for the inner HTML, select it and then click on the link button to capture the URL ?
This way you should have your inner HTML correcty set.