离子隐藏光标
Ionic hide cursor
当我的可编辑内容 <div>
(聊天字段)变得模糊时,键盘关闭但(蓝色)光标仍然可见。
有没有办法隐藏光标?
<div class="chat-message" contenteditable="true" data-ph="Typ een bericht..."></div>
进一步搜索后,我偶然发现了以下主题:How can I blur a div where contentEditable=true?
似乎内容可编辑与普通文本区域有点不同。
必须清空选择,其实想想就觉得很明显..
所以对我有用的是以下内容:
$('#chat .chat-footer .chat-actions .chat-message').on('blur', function () {
window.getSelection().removeAllRanges();
});
当我的可编辑内容 <div>
(聊天字段)变得模糊时,键盘关闭但(蓝色)光标仍然可见。
有没有办法隐藏光标?
<div class="chat-message" contenteditable="true" data-ph="Typ een bericht..."></div>
进一步搜索后,我偶然发现了以下主题:How can I blur a div where contentEditable=true?
似乎内容可编辑与普通文本区域有点不同。 必须清空选择,其实想想就觉得很明显..
所以对我有用的是以下内容:
$('#chat .chat-footer .chat-actions .chat-message').on('blur', function () {
window.getSelection().removeAllRanges();
});