javascript - 为什么在 contenteditable div 内什么都没有时总是得到 5 个空格?
<p><p>我将 contenteditable div 中的 innerHTML 转换为 NSString,如下所示:</p>
<pre><code>NSString *htmlText = ;
if (htmlText) {
NSLog(@"TEST: |%@"|,htmlText);
}
</code></pre>
<p>我想检查那个 div 里面什么时候什么都没有,但是当 div 里面什么都没有时我总是得到 5 个空格。
为什么?请帮忙!</p>
<pre><code><div id="content" contenteditable="true" style="font-family: Helvetica">
</div>
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您正在使用此代码:</p>
<pre><code><div id="content" contenteditable="true" style="font-family: Helvetica">
</div>
</code></pre>
<p>可能后面会有空格</p>
<pre><code><div id="content" contenteditable="true" style="font-family: Helvetica"> << space will be there
</code></pre>
<p>所以用这个:</p>
<pre><code><div id="content" contenteditable="true" style="font-family: Helvetica"></div>
</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]