在多个元素上运行 JavaScript 函数..?
我对 JavaScript(当然还有 jQuery)非常陌生,所以我正在寻求一些帮助...... 此 JavaScript 函数根据容器 div 更改字体大小。
我需要它适用于所有 div(某个类别的,最终) - 但它只获取第一个信息,并根据该信息调整它们的大小。 有什么想法吗?
不是在寻找复制/粘贴答案,我想正确地解决这个问题。 谢谢!
I'm very new to JavaScript (and of course jQuery), so I'm seeking a little help...
This JavaScript function changes font size depending on the container div.
I need it to work for all divs (of a certain class, eventually) - but it only grabs the info from the first one, and resizes them all according to that one.
Any thoughts?
Not looking for a copy/paste answer, I want to get through this properly.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您想独立处理每个元素,因此可以在插件中通过执行
.each( )
在那里循环,而不是这样:它应该是这样的:
你可以测试它这里
顺便说一句,从旧方法...
this
已经是插件内的 jQuery 对象(注意我是如何调用.each()
直接在其上),无需将其包装在另一个 jQuery 对象中(克隆它)。您确实需要将其包装在我的第二个示例内部循环中,因为在.each()
您指的是单个 DOM 元素,而不是 jQuery 对象。Since you want to handle each element independently, you can do that in your plugin, by doing a
.each()
loop there, instead of this:It should be like this:
You can test it here
As an aside, from the old method...
this
is already a jQuery object inside a plugin (note how I'm calling.each()
directly on it), there's no need to wrap it in another jQuery object (cloning it). You do need to wrap it in my second example inside the loop, since inside the.each()
you're referring to individual DOM elements, not jQuery objects.添加 .each() 到
应该肯定有效。
艾伦
add .each() into
Should definately work.
Alan