0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PC・iPhone・アンドロイドの範囲選択終了のイベント

Last updated at Posted at 2025-03-14

PC・iPhone・アンドロイドの範囲選択終了のイベント

【PC】mouseupを使う

const isMobile = /iphone|ipod|android.*mobile|windows.*phone|blackberry.*mobile/i.test(userAgent);
const isAndroid = /android/i.test(userAgent);

if (isMobile) {
}else{
    $(document).on("mouseup", function () {
        setTimeout(function () {
            let selectedText = getSelectedText();
            if (selectedText) {
                console.log("選択されたテキスト:", selectedText);
            }
        }, 100);
    });
}

【iPhone】touchendを使う

const isMobile = /iphone|ipod|android.*mobile|windows.*phone|blackberry.*mobile/i.test(userAgent);
const isAndroid = /android/i.test(userAgent);

if (isMobile) {
    if (isAndroid) {
    }else{
        $(document).on("touchend", function () {
            setTimeout(function () {
                let selectedText = getSelectedText();
                if (selectedText) {
                    console.log("選択されたテキスト:", selectedText);
                }
            }, 100);
        });
    }
}

【Android】selectionchangeを使う

const isMobile = /iphone|ipod|android.*mobile|windows.*phone|blackberry.*mobile/i.test(userAgent);
const isAndroid = /android/i.test(userAgent);

if (isMobile) {
    if (isAndroid) {
        $(document).on("selectionchange", function () {
            setTimeout(function () {
                let selectedText = getSelectedText();
                if (selectedText) {
                    console.log("選択されたテキスト:", selectedText);
                }
            }, 100);
        });
    }
}

選択中のテキストを取得する関数

if (isMobile) {
    if (isAndroid) {
        function getSelectedText() {
            if (window.getSelection) {
                return window.getSelection().toString().trim();
            }
            return "";
        }
    }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?