问题标签 [parents]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
html - 使父 div 宽度不扩展以适合子 div
我有一个与 CSS 和 HTML 相关的问题。我有一个主 div,它具有背景颜色并且应该是可见的。在其中,我有一个包含多个较小 div 的包装器。一次只有一个孩子可以放入更大的 div 中,但我希望其他孩子在它旁边用滚动条垂直对齐,这样我就可以在 div 之间滚动。我不希望主 div 之外的 div 可见并扩展站点。
我试图将其浮动到左侧,但它们只在彼此下方对齐。即使我将包装器 div 设置为自动。但是,如果我设置一个适合所有较小 div 的特定宽度(即 7000 像素),它们将垂直对齐。但即使是那些被推到外面的人,如果“主要” div 将可见,并且网站被拉伸。
那么这可能吗?这就像你对文本所做的那样,当你只希望它在一个特定的 div 中时(就像这里在文本编辑器中,只有垂直和 div 一样)。
希望有人能帮忙!;)
jquery - 希望优化以下 JQuery 代码
我有 4 个浮动 div,当您将鼠标悬停在 div 内的 A 标签上时,一个 div 将显示在这 4 个 div 的底部,对应于点击发生的 div。据我所知,我已经优化了 JQuery,但我只是想看看是否还有其他解决方案。
我的小提琴:http: //jsfiddle.net/jonxblaze/PyHH5/
HTML
jQuery
java - Java intanceof false if have parent
I am creating some sort of Achievement system and I have a class KillXEnemies and then I inherit from it with classes like KillXEnemiesWeapon (enemies killed with an certain weapon). And when you kill an enemy I loop trough the achievement objects and add that an enemy has been killed with:
But then the KillXEnemiesWeapon gets tracked as well because it inherits from KillXEnemies. I know one solution is:
But I am about to get quite many classes that inherits from KillXEnemies and it seems to be a bad solution to have like 20 !(object instanceof (---))
So I am wondering if there is an easier way to check if the object only is KillXEnemies and not KillXEnemiesWeapon
php - Magento PHP:没有父母的产品
在 Magento 中,我想在脚本上过滤没有任何父产品的产品。目前我做类似的事情:
我得到了所有的产品,但我可以使用 getCollection() 说“只给我没有父母的产品”吗?
谢谢
jquery - 如何从兄弟元素中定位和删除类?
因此,如果您单击 Red 类,它应该从 Blue 和 Green 按钮中删除 blue_on 和 green_on 类(如果它们正在使用)。
我的 codepen,我试图在较小的区域复制我的问题:http: //codepen.io/leongaban/pen/vzolu
我的真实代码供参考
jquery - IE 8, jQuery 1.7.1 $(element).parents(selector) 也返回兄弟姐妹
我有一个这种布局的表格:
什么时候$(".save").click()
触发。我打电话$(this).parents(".detail")
对于 IE,会发生以下情况: -<div class='detail'>
选择父级以及之前的<div class='detail'>
兄弟级。
对于 FF,会发生以下情况: - 仅<div class='detail'>
返回父级。
我正在寻找的正确功能是 FF 正在做的事情。
我可以知道如何为 IE 做一个解决方法。
谢谢你。
编辑:这是点击事件处理程序:
jquery - jQuery 如何定位这些兄弟 td 中的数据?
因此,当单击时,我modalLink
想从td
this 内部tr
而不是 other内部获取并保存数据值tr
到目前为止,我的函数抛出了一个无法实现的 Uncaught TypeError
你会如何处理这个问题?
jquery - 必须和父母一起抓住前装元素
我的html:
我有 id options_22_text 作为参考,我需要在 dl 上添加一个类。
有人能帮我吗?
我希望结果是:
javascript - jQuery parents() with object reference selector
I am trying to detect whether a target element is either a child element, or the same element, that I have as an object reference.
I am using the following logic:
However "scroll" is alerted even when scrolling over an element which is neither .foo
or a child of .foo
.
In my JsFiddle example, scroll over the .bar
element, and "scroll" is still alerted:
Why is this? Is it possible to use jQuery object references as the selector of .parents()
?
javascript - JQuery 1.10.1 不能删除父母
我有一个稍微修改的 JSFiddle 来支持我的生产 JQuery 版本(1.10.1,原始版本使用 1.4.3)。<p>
单击“添加新输入框”后,我无法获得“删除”链接来删除新创建的链接。我认为问题出在
修改版:http: //jsfiddle.net/x68jx/
原始版本:http: //jsfiddle.net/jaredwilli/tZPg4/4/