gpt4 book ai didi

html - Firefox document.execCommand ('insertText' , ...)

转载 作者:搜寻专家 更新时间:2023-10-31 08:26:46 25 4
gpt4 key购买 nike

我知道 FireFox 可以很好地处理 execCommand 但这次我想我遇到了一个错误。

但也许我只是忽略了一些东西。

我确实有一个 textarea,我正在其中执行 insertText 只要我离开 textarea 或写入它就可以正常工作.当我要执行第二次时,它是用文本而不是值来写的。是因为 insertText 吗?

这是我的例子:

<!doctype html>
<html>
<head>
<title>Test</title>
</head>
<body>
<textarea designMode="on" id="textarea"></textarea>
<a href="#" onclick="document.getElementById('textarea').focus(); document.execCommand('insertText', false, 'Text'); return false;">Insert text</a>
<a href="#" onclick="document.getElementById('textarea').value = ''; return false;">Reset</a>
</body>
</html>

有人对此有解决方案吗?很遗憾,无法使用 div contenteditable

FireFox 41.0.2 中测试,未启用附加组件

最佳答案

命令 document.execCommand('insertText', false, 'Text') 在 Firefox 中对 textarea 不起作用。

查看错误: https://bugzilla.mozilla.org/show_bug.cgi?id=1220696

关于html - Firefox document.execCommand ('insertText' , ...),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33480562/

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