jQTouch - 无法粘贴到输入字段:有人见过这个吗?

发布于 2024-08-20 00:21:44 字数 243 浏览 6 评论 0原文

以下是 HTML 片段:

<input type="text" name="UPCtext" id="UPCtextBar" value="" placeholder="Type UPC number" class="UPCvalue"/>

没有与此输入字段关联的事件 bind() 或 live()。

如果我删除 jQTouch 它就会正常工作,那么,有人遇到过这个问题吗?

Here is the HTML snippet:

<input type="text" name="UPCtext" id="UPCtextBar" value="" placeholder="Type UPC number" class="UPCvalue"/>

There are no events bind()'s or live()'s associated with this input field.

If I remove jQTouch it works as it should, so, have anyone been through this problem?

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

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

发布评论

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

评论(2

不喜欢何必死缠烂打 2024-08-27 00:21:44

快速搜索“jqtouch Paste”发现了 jqTouch 问题这表明这可能是一个 WebKit 继承错误。现阶段似乎没有提供解决方案。

A quick search for "jqtouch paste" revealed a jqTouch issue that suggests it may be a WebKit inheritance bug. No solution seems to be offered at this stage.

我找到了一个解决方法:

function fixCopyPaste(el) {
    el.bind('paste', function(e) {
        var element = $(this).context;

        var text = $(this).val();
        var start = element.selectionStart;
        var pastedText = e.originalEvent.clipboardData.getData('text/plain');
        $(this).val(text.substring(0, element.selectionStart)
            +pastedText
            +text.substring(element.selectionEnd, text.length));
        element.selectionStart = start+pastedText.length;
        element.selectionEnd = element.selectionStart;
    });
}

在要启用粘贴功能的输入元素上调用此函数。例如:

fixCopyPaste($('#notes'));

它可能可以扩展以处理多个元素。

I found a workaround:

function fixCopyPaste(el) {
    el.bind('paste', function(e) {
        var element = $(this).context;

        var text = $(this).val();
        var start = element.selectionStart;
        var pastedText = e.originalEvent.clipboardData.getData('text/plain');
        $(this).val(text.substring(0, element.selectionStart)
            +pastedText
            +text.substring(element.selectionEnd, text.length));
        element.selectionStart = start+pastedText.length;
        element.selectionEnd = element.selectionStart;
    });
}

Call this function on the input element that you want to enable paste feature. E.g.:

fixCopyPaste($('#notes'));

It can probably be extented to handle more than one element.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文