gpt4 book ai didi

javascript - 单击按钮时应用替换功能后,如何显示(不是通过警报,而是在文本区域本身)文本区域的值?

转载 作者:行者123 更新时间:2023-11-28 02:32:47 25 4
gpt4 key购买 nike

我有这个脚本和 html,用于提交表单:

<script type="text/javascript">
function ApplyIndent() {
var txtArea = document.getElementById('w2').value;
var myRegExp = / /g;
txtArea = txtArea.replace(myRegExp, "&#160;");
}
</script>


<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td><textarea id="w2" cols="50" rows="5"/></td>
</tr>

<tr>
<td><input id="btnIndent" value="Indent" onclick="ApplyIndent()"/></td>
</tr>
</table>

我在这里想要完成的是将空格替换为不间断空格,因为即使您在文本区域中缩进文本行,它也会在提交表单后自动对齐,除非您使用不间断空格。我测试了向文本区域发出警报,并且得到了所需的结果,但是,我需要的是警报中的值显示在文本区域本身上。我该怎么做?仅仅为了获得所需的空间而输入 ASCII 字符的效率很低,我们不希望这样。预先感谢!

Using <space> to indent

Result when using <space> after submitting form

Using non-breaking space to indent

Result when using non-breaking space after submitting form

最佳答案

var txtArea = document.getElementById('w2');
txtArea.value = txtArea.value.replace(/ /, "&#160;");

请注意,如果您想要 #160 表示的实际字符而不是拼写出来的 HTML 实体,请使用:

"\xA0"

编辑:再想一想,CSS white-space: pre-wrap 有什么问题吗?

关于javascript - 单击按钮时应用替换功能后,如何显示(不是通过警报,而是在文本区域本身)文本区域的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13890026/

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