1

ueditor anchor
问题描述:在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;
}

披着凉皮的狼
5 声望0 粉丝

引用和评论

0 条评论