gpt4 book ai didi

javascript - WordPress 在 qtip2 内容中添加了多余的

。原因 意外的 token 非法

转载 作者:行者123 更新时间:2023-11-28 07:40:09 26 4
gpt4 key购买 nike

我正在使用 qtip2 开发一个 WordPress 插件。

换行不起作用。当尝试通过以下 JS 代码创建内存中的 div 时 HTML-encoding lost when attribute read from input field

JS文件应添加htmlDecode函数代码:

function htmlDecode(value){
return JQuery('<div/>').html(value).text();
}

但不幸的是,我收到了“Unexpected token ILLEGAL”,因为 WP 添加了多余的

 </p> 

以及该帖子的代码中断(来自 chrome DevTools):

return jQuery(("</p>
<div/>").html(value)).text(); } });

请指教

最佳答案

使用Javascript版本的htmlDecode解决

function htmlDecode(html){
var a = document.createElement( "a" );
a.innerHTML = html;
return a.textContent;
};

关于javascript - WordPress 在 qtip2 内容中添加了多余的 </p>。原因 意外的 token 非法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28145626/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com