gpt4 book ai didi

javascript - 查找剪贴板是否有文字或图像?

转载 作者:行者123 更新时间:2023-12-01 06:10:22 24 4
gpt4 key购买 nike

我正在使用 Html5 和 Jquery。我已将剪贴板中的图像/文本粘贴到 html Canvas 中。

是否可以检测剪贴板是否有文本或图像?

$(document).on('paste','[contenteditable]',function(e) {
e.preventDefault();

//Here is it possible to detect whether clipboard has text or image?

var text = (e.originalEvent || e).clipboardData.getData('text/plain');
});

谢谢!

最佳答案

这是我的页面上的内容,它对我有用:

if (e.clipboardData.files.length > 0) {
// Image
} else {
// Text
};

我还看到这个问题是 6 年前发布的,但希望它可以帮助其他人。

关于javascript - 查找剪贴板是否有文字或图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22303661/

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