在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中重现模拟移动设备。