FF 和 IE - 在文本区域中处理 \n 的方式

发布于 2024-09-29 18:30:04 字数 653 浏览 7 评论 0原文

我正在用 jeditable 做一个文本区域。内容是从数据库保存和加载的。但我在 IE 和 FF 处理换行符的方式上遇到了一些问题。

经过一些调试后,我发现 FF 中有一个神秘的行为。例如,如果我在文本区域中输入:

1
2

它将返回

1<br>2

Which is Fine。但如果我写:

1
2
3

它返回

1<br>2<br>
3

怎么来的?我应该如何对这种异常行为进行正则表达式。

自动取款机。我正在做这个正则表达式:

  data      : function(value, settings) {
      /* Convert <br> to newline. */
      retval = value(/<br[\s\/]?>/gi, '\n');
      return retval;
 },

在 IE 中工作正常,但在 FF 中(由于这种行为)它返回的换行符比预期的要多。

你能帮忙吗?

提前致谢

Im doing a textarea with jeditable. The content is saved and loaded from a database. But im having some problems in the way IE and FF handles linebreaks differently.

After some debugging i've found a mysterious behavior in FF. For example if i input in textarea:

1
2

It will return

1<br>2

Which is fine. But if i write:

1
2
3

It returns

1<br>2<br>
3

How come? And how am i supposed to do regexp on this abnormal behaviour.

Atm. im doing this regexp:

  data      : function(value, settings) {
      /* Convert <br> to newline. */
      retval = value(/<br[\s\/]?>/gi, '\n');
      return retval;
 },

Which works fine in IE, but in FF (because of this behaviour) it returns more linebreaks than supposed to.

Can you help ?

Thanks in advance

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

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

发布评论

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

评论(1

失退 2024-10-06 18:30:04

如果您希望文本中没有换行符,为什么不在将
转换为换行符之前将它们删除呢?

value = value.replace(/(\r\n|[\r\n])/g,'');
retval = value.replace(/<br[\s\/]?>/gi, '\n');

If you're expecting the text to have no newlines in it, why not just strip them out before you convert the <br>s to newlines?

value = value.replace(/(\r\n|[\r\n])/g,'');
retval = value.replace(/<br[\s\/]?>/gi, '\n');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文