如何使用 Jquery Javascript 替换

发布于 2024-12-05 21:19:34 字数 869 浏览 0 评论 0原文

我在我的所见即所得中使用它来替换

< pre> Hi my name is< /pre>

< div id="precode">Hi my name is< /div>

这是工作代码 代码

v=v.replace(/<pre>(.*)<\/pre>/gim,'<div id="precode">$1</div>');

这工作正常,除非字符串包含 < br>

编辑这是代码

if(div){div.innerHTML=this.obj.toggletext||'Spell Check'}
$('#spellcheck_words').slideToggle('slow', function() { }); 
if(this.xhtml&&!this.ie){
v=v.replace(/<strong>(.*)<\/strong>/gi,'<span style="font-weight: bold;">$1</span>');               
v=v.replace(/(<img [^>]+[^\/])>/gi,'$1/>')
v=v.replace(/<em>(.*)<\/em>/gi,'<span style="font-weight: italic;">$1</span>')
}

编辑

I'm using this in my wysiwyg to replace

< pre> Hi my name is< /pre>

with

< div id="precode">Hi my name is< /div>

This is the working code code

v=v.replace(/<pre>(.*)<\/pre>/gim,'<div id="precode">$1</div>');

This works fine unless the string contains a < br>

EDIT This is the code

if(div){div.innerHTML=this.obj.toggletext||'Spell Check'}
$('#spellcheck_words').slideToggle('slow', function() { }); 
if(this.xhtml&&!this.ie){
v=v.replace(/<strong>(.*)<\/strong>/gi,'<span style="font-weight: bold;">$1</span>');               
v=v.replace(/(<img [^>]+[^\/])>/gi,'$1/>')
v=v.replace(/<em>(.*)<\/em>/gi,'<span style="font-weight: italic;">$1</span>')
}

EDIT

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

十二 2024-12-12 21:19:34
$('pre').replaceWith('<div>'+$(this).html()+'</div>');
$('pre').replaceWith('<div>'+$(this).html()+'</div>');
你是我的挚爱i 2024-12-12 21:19:34

使用

$('pre').replaceWith('<div>'+$(this).html()+'</div>');

这样 html 就会被忽略。

use

$('pre').replaceWith('<div>'+$(this).html()+'</div>');

so html gets passed over.

姜生凉生 2024-12-12 21:19:34

或者:

v=v.replace(/<pre>((?:.|[\r\n])*)<\/pre>/gim,'<div id="precode">$1</div>');

问题不在于
,而在于换行符。

Or:

v=v.replace(/<pre>((?:.|[\r\n])*)<\/pre>/gim,'<div id="precode">$1</div>');

Problem is not with <br/>, but with new-line characters.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文