菜鸟教程小白 发表于 2022-12-12 14:39:21

javascript - 为什么在 contenteditable div 内什么都没有时总是得到 5 个空格?


                                            <p><p>我将 contenteditable div 中的 innerHTML 转换为 NSString,如下所示:</p>

<pre><code>NSString *htmlText = ;
if (htmlText) {
    NSLog(@&#34;TEST: |%@&#34;|,htmlText);
}
</code></pre>

<p>我想检查那个 div 里面什么时候什么都没有,但是当 div 里面什么都没有时我总是得到 5 个空格。
为什么?请帮忙!</p>

<pre><code>&lt;div id=&#34;content&#34; contenteditable=&#34;true&#34; style=&#34;font-family: Helvetica&#34;&gt;
&lt;/div&gt;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您正在使用此代码:</p>

<pre><code>&lt;div id=&#34;content&#34; contenteditable=&#34;true&#34; style=&#34;font-family: Helvetica&#34;&gt;
&lt;/div&gt;
</code></pre>

<p>可能后面会有空格</p>

<pre><code>&lt;div id=&#34;content&#34; contenteditable=&#34;true&#34; style=&#34;font-family: Helvetica&#34;&gt; &lt;&lt; space will be there
</code></pre>

<p>所以用这个:</p>

<pre><code>&lt;div id=&#34;content&#34; contenteditable=&#34;true&#34; style=&#34;font-family: Helvetica&#34;&gt;&lt;/div&gt;
</code></pre>

<p>在开始 div 之后关闭 div。</p>

<p>这将在 <code>innerHTML</code> 中给出正确的值。</p></p>
                                   
                                                <p style="font-size: 20px;">关于javascript - 为什么在 contenteditable div 内什么都没有时总是得到 5 个空格?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18867191/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18867191/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: javascript - 为什么在 contenteditable div 内什么都没有时总是得到 5 个空格?