Element.addMethods(tagName,...)在移动设备中无效

时间:2017-03-22 00:32:12

标签: javascript prototypejs

在PC上运行时效果很好。但在移动设备上无法正常工作。谁知道发生了什么?

Element.addMethods('INPUT', {
    sayGoodbye: function(element) {
        console.log('Goodbye!');
        return element;
    }
});
$('my-input-textfield').sayGoodbye();

移动设备只说:

Uncaught TypeError: $(...).sayGoodbye is not a function

P.S。它可以在Chrome或Edge中重现模拟移动设备。

0 个答案:

没有答案