WordPress 插件,jquery 无冲突问题
我是 jQuery 和 javascript 的新手!
为了避免 WordPress 插件中出现任何冲突,我在页面外部的 JS 文件中包含了以下行:
jQuery(document).ready(function() {
var yourFunc = function() {
//code
};
yourFunc();
});
现在,当我单击插件设置(使用此 javascript)时,会在新选项卡中打开链接,其中会出现一个“更多选项”(切换功能)不起作用。我不知道这可能是由于 WordPress 或其他原因造成的。
所以专家,请帮助我,我想在同一选项卡中打开链接。我尝试了很多,但都是徒劳。
I am newbie to jQuery and javascript !!
To avoid any conflict in WordPress Plugin, I've included the following line in my JS file that is outside my page:
jQuery(document).ready(function() {
var yourFunc = function() {
//code
};
yourFunc();
});
Now when I click on plugin settings (which uses this javascript), opens the link in new tab and in that, an "more option" (toggle function) is not working. That might be due to WordPress or other, I dont know.
So Experts, Please help me, I want to open the links in same tab. I tried a lot but all in vain.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你在JS中使用$吗?如果是这样,在 noConflict 模式下使用 jQuery 时,您需要将 $ 作为参数传递以用作 jQuery 对象的别名。
Are you using the $ in your JS? If so, while using jQuery in noConflict mode, you need to pass the $ in as a parameter to use as an alias for jQuery objects.