gpt4 book ai didi

jQuery text() 函数在 IE 中丢失换行符

转载 作者:行者123 更新时间:2023-12-03 22:37:39 26 4
gpt4 key购买 nike

这是 jQuery 论坛上经常讨论的问题,但我无法找到适合我情况的解决方案。

我有一个无序列表,其中包含一些文本元素...用户可以通过 jQuery 创建新的列表项,并将其保存到 SQL 数据库中。他们还可以编辑现有的列表项。此外,由于每个列表项中的文本可能会变得很长,因此他们可以选择“隐藏”每个列表项,以便显示字符串的截断版本。这是由一个自定义 jQuery 插件处理的,该插件会截断超过一定长度的列表项...这是截断插件格式化后每个列表项的外观:

<li id="item_1">
<div class="note">
This is the text that shows when this element is truncated <span style="display: none;" class="truncate_ellipsis">...</span>
<span style="display: inline;" class="truncate_more">This is the text that will be hidden if the user clicks on the 'hide' button</span>
</div>
<div class="toggle_wrapper">
<div class="note_toggle">
<a href="#" class="truncate_more_link">Hide note</a>
</div>
<div style="display: block;" class="note_controls">
<span class="edit_note"><a href="#note_textfield" id="edit_note_1">Edit</a></span> | <span class="delete_note"><a href="#" id="delete_note_1">Delete</a></span>
</div>
</div>
</li>

我遇到的问题是,用户单击“编辑”,它会获取带有“note”类的 div 的内容并将其分配给文本区域。然后用户可以编辑文本并保存。我使用以下脚本来获取 div 的内容并将其分配给文本区域:

$('.edit_note a').click(function(event){

// Get the parent li of the 'edit' link that was clicked
var parentLi = $(this).closest('li');

// fade out the li that's being edited
parentLi.fadeOut('fast');

// remove the '...' that shows when the note is truncated
parentLi.find('.truncate_ellipsis').remove();

// find the 'note' div within the li that's being edited
var currentNote = parentLi.find('.note');

// grab the id of this note... used when saving to the DB
var noteId = $(this).attr('id').substr(10);

// Set the current note id variable and editing status
currentNoteId = noteId;
currentNoteStatus = 'edit';

//add the note ID as a hidden field to the text editor form
$('input[name$="note_id"]').val(noteId);

// grab the text from this note and add it to the text area
// (textarea id is 'notes_content')
$('#notes_content').val($.trim(currentNote.text()); // this is the text area

// fade in the text area so the user can edit
$('div.notes_textarea').fadeIn();

});

保存后,我将使用我在网上找到的函数将换行符转换为 BR,然后将文本区域的内容分配回相应列表项中的“note”div:

function nl2br (str, is_xhtml) {   
var breakTag = (is_xhtml || typeof is_xhtml === 'undefined') ? '<br />' : '<br>';
return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1'+ breakTag +'$2');
}

这一切在 firefox/chrome/opera/safari 中都可以正常工作...但是,IE 在通过 jQuery text() 函数获取文本时摆脱了换行符。这在 jQuery 文档的本页注释中进行了讨论:

http://api.jquery.com/text/

有些人通过克隆源元素,将其包装在“pre”标签中,然后获取其中的内容并将其放入文本区域,从而取得了成功。这适用于换行符,但也会带来额外的空格、制表符等,看起来有点乱。更好的解决方案似乎是使用 html() jQuery 函数来抓取文本,然后替换 br 来换行,并去掉任何其他 html 格式。

然而,我对 Javascript 很陌生,而且我对正则表达式一窍不通,所以我不知道如何做到这一点,而且我的时间不多了!我需要一个正则表达式,或者只是一些字符串格式化方面的帮助来执行以下操作:

  • 从字符串中删除所有 span 标签,而不删除 span 的内容(我的 truncate 函数添加了一个带有“truncate_more”类的 span ...请参阅上面的 html 代码)

  • 删除 br 并将其替换为换行符,这些换行符将在文本区域元素中正确显示并在浏览器中保持一致

或者..如果有人知道解决此 IE/textarea/linebreak 问题的更好方法,我真的很感激白痴指南:)

相当多的信息可能是一个简单的解决方案,但我想我会尽力解释这种情况!任何帮助将不胜感激......

编辑:'TheJuice 下面的答案适用于 br 的/IE 换行问题(谢谢!),但我需要执行类似的正则表达式来消除跨度,因为它们只封装一些文字。我尝试了以下方法,在 Firefox 中似乎工作正常,但在 IE 中跨度仍然存在:

        var withBRs = currentNote.html();
var textWithBreaks = withBRs.replace(/\<br\>/gi,'\r');
textWithBreaks = textWithBreaks.replace(/\<.*span.*\>/g, '');

另一个编辑:“TheJuice”也解决了这个问题...忽略我可怕的正则表达式,如果你发现自己处于同样的情况,就按照他说的做!感谢所有提出建议的人...

最佳答案

这里有一个更简单的解决方案,可以根据 <br> 将任何 HTML 转换为带有换行符的纯文本。或<p>标签。

function htmlDecodeWithLineBreaks(html) {
var breakToken = '_______break_______',
lineBreakedHtml = html.replace(/<br\s?\/?>/gi, breakToken).replace(/<p\.*?>(.*?)<\/p>/gi, breakToken + '$1' + breakToken);
return $('<div>').html(lineBreakedHtml).text().replace(new RegExp(breakToken, 'g'), '\n');
}

例如调用以下方法:

htmlDecodeWithLineBreaks('line 1<br>line &amp; 2<br />' + 
'line &gt; 3<p>paragraph 1</p>line 4')

返回:

line 1
line & 2
line > 3
paragraph 1
line 4

希望有帮助;)

关于jQuery text() 函数在 IE 中丢失换行符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4502673/

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