问题描述:在uEditor中添加了锚点之后,添加a跳转链接的时候,如上图,链接地址为#abc的时候,确认之后uEditor会自动给我加上http://导致链接地址变成http://#abc这样就不能正确链接到相应的锚点abc了。
解决方案:
修改ueditor/dialogs/link/link.html 链接窗口文件第75行
if(!hrefStartWith(href,["http","/","ftp://"])) {
href = "http://" + href;
}
改为
if(!hrefStartWith(href,["http","/","ftp://","#"])) {
href = "http://" + href;
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。