我有这个javascript函数:

function maxLengthPaste(field,maxChars)
{
    event.returnValue=false;
    if((field.value.length + window.clipboardData.getData("Text").length) > maxChars) {
        field.value = field.value + window.clipboardData.getData("Text").substring(0, maxChars - field.value.length);
        return false;
    }
    event.returnValue=true;
}
window.clipboardData.getData("Text")在Chrome浏览器中不起作用
有任何跨浏览器代码可以替代吗?

最佳答案

不,没有对window.clipboardData的跨浏览器支持。仅IE支持。对window.clipboardData的支持通常被视为安全问题,因为它允许您访问的每个网站都读取当时剪贴板中的内容。

在Chrome中,您可以在处理粘贴事件时阅读clipboardData:

document.addEventListener('paste', function (evt) {
  console.log(evt.clipboardData.getData('text/plain'));
});

关于javascript - window.clipboardData.getData ("Text")在chrome中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20509061/

10-11 13:51