如何通过名称调用jquery函数
如何通过名称调用 jQuery 函数。例如:
var fn = 'hide',
myObj = $("#smth");
// here I want to hide myObj ( $("#smth").hide() )
// my variants were:
// fn.call(myObj) - doesn't work
// myObj.fn() - doesn't work (I've not expected, just tried =) )
How to call jQuery function by its name. For example:
var fn = 'hide',
myObj = $("#smth");
// here I want to hide myObj ( $("#smth").hide() )
// my variants were:
// fn.call(myObj) - doesn't work
// myObj.fn() - doesn't work (I've not expected, just tried =) )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
访问该函数就像使用变量名访问
myObj
的任何其他成员一样,然后只需调用它:Access the function as you would access any other member of
myObj
using a variable name, and then simply call it:这样做:
干杯
Do this:
Cheers