查詢:
如何在與其他控制項互動後保留文字方塊中的文字選擇?
解決方案:
要在點擊其他元素時保留文字方塊選擇,請使用以下方法:
document.onkeydown = function (e) { ShowSelection(); }
查詢:
如何以程式方式取得文字方塊中已選取的文字?
解決方案:
要從文本框中檢索所選文本,請按照以下步驟操作步驟:
function ShowSelection() { var textComponent = document.getElementById('Editor'); var selectedText; if (textComponent.selectionStart !== undefined) { var startPos = textComponent.selectionStart; var endPos = textComponent.selectionEnd; selectedText = textComponent.value.substring(startPos, endPos); } else if (document.selection !== undefined) { textComponent.focus(); var sel = document.selection.createRange(); selectedText = sel.text; } alert("You selected: " + selectedText); }
以上是如何使用 JavaScript 儲存和取得文字方塊中的文字選擇?的詳細內容。更多資訊請關注PHP中文網其他相關文章!