引用文本区域中选定的文本

发布于 2024-10-15 12:24:42 字数 37 浏览 1 评论 0原文

有没有办法检索当前在 Seaside 文本区域中选择的文本?

Is there a way to retrieve the text that's currently selected in a text area in Seaside?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伪心 2024-10-22 12:24:42

您可以使用 jQuery/Javascript 来完成。
您想什么时候检索所选文本?什么会触发检索(用户点击?定期轮询?)

You can do it with jQuery/Javascript.
When do you want to retrieve the selected text ? What will trigger the retrieval (a user click ? Regular polling ?)

小矜持 2024-10-22 12:24:42

抱歉,贴错地方了,解决方法如下:

MyComponent >> script
 ^ 'function selectedText(input){
    var startPos = input.selectionStart;
    var endPos = input.selectionEnd;
    var doc = document.selection;

    if(doc && doc.createRange().text.length != 0){
        document.getElementById(''selectedText'').value = (doc.createRange().text);
    } else if (!doc && input.value.substring(startPos,endPos).length != 0){
        document.getElementById(''selectedText'').value = (input.value.substring(startPos,endPos))  
    }
}'


MyComponent >> renderContentOn: html
    (html form)
        with: [ 
            (html hiddenInput)
                id: 'selectedText';
                callback: [ :value | selection := value ].
            (html textArea)
                callback: [ :value | theTextAreaText := value];
                id: 'myTextArea'
                with: theTextAreaText.
            (html submitButton)
                onClick: 'selectedText(myTextArea); submitForm(this)';
                with: 'Work your magic, J.S.' ].

Sorry, pasted it in the wrong place, here's the solution:

MyComponent >> script
 ^ 'function selectedText(input){
    var startPos = input.selectionStart;
    var endPos = input.selectionEnd;
    var doc = document.selection;

    if(doc && doc.createRange().text.length != 0){
        document.getElementById(''selectedText'').value = (doc.createRange().text);
    } else if (!doc && input.value.substring(startPos,endPos).length != 0){
        document.getElementById(''selectedText'').value = (input.value.substring(startPos,endPos))  
    }
}'


MyComponent >> renderContentOn: html
    (html form)
        with: [ 
            (html hiddenInput)
                id: 'selectedText';
                callback: [ :value | selection := value ].
            (html textArea)
                callback: [ :value | theTextAreaText := value];
                id: 'myTextArea'
                with: theTextAreaText.
            (html submitButton)
                onClick: 'selectedText(myTextArea); submitForm(this)';
                with: 'Work your magic, J.S.' ].
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文