简体   繁体   English

wordpress 中的 jquery function 未在移动设备中加载

[英]jquery function in wordpress not loading in mobile

I'm using this jquery script to filter content from a html table.我正在使用这个 jquery 脚本来过滤 html 表中的内容。 http://jsfiddle.net/7BUmG/2/ The search bar works great when I type on the keyboard on desktop and mobile using the touchscreen. http://jsfiddle.net/7BUmG/2/当我使用触摸屏在台式机和移动设备的键盘上键入时,搜索栏效果很好。

I tried to load the same script in a wordpress page but it was not working.我试图在 wordpress 页面中加载相同的脚本,但它不起作用。 so I tried to wrap the code in this function所以我试图将代码包装在这个 function

(function($) {

})(jQuery);

I think this is a method used for compatibility with wordpress jquery library.我认为这是一种用于与 wordpress jquery 库兼容的方法。 It works fine in desktop but now the keyup event does not work on mobile.它在桌面上运行良好,但现在 keyup 事件在移动设备上不起作用。

WordPress dont't understand $ as jQuery and you have to make some modifications to fix this error. WordPress 不理解 $ 作为 jQuery 并且您必须进行一些修改以修复此错误。 You can try wrap:您可以尝试换行:

jQuery(function($){
    // your code jquery here
}); 

or或者

jQuery(document).ready(function($) {
    // your code jquery here
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM