问题标签 [next]
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.
cocoa - 你有没有使用过 NSZoneMalloc() 而不是 malloc()?
Cocoa 提供了它称为Memory Zones的页面对齐的内存区域,并提供了一些将区域作为参数的内存管理函数。
假设您需要分配一块内存(不是为对象,而是为任意数据)。如果您调用malloc(size)
,缓冲区将始终分配在默认区域中。但是,有人可能习惯于allocWithZone:
将您的对象分配到默认区域之外的另一个区域。在这种情况下,使用 似乎会更好NSZoneMalloc([self zone], size)
,它将缓冲区和拥有对象保持在同一内存区域中。
你遵循这种做法吗?你有没有使用过内存区域?
更新:我认为 Stack Overflow 倾向于通过关于过早优化的讲座来回答有关低级主题的问题。我知道 1993 年 NeXT 硬件上的区域可能比现在更重要,而且谷歌搜索清楚地表明几乎没有人关心它们。无论如何,我都在问,看看是否有人可以描述一个他们使用内存区域的项目。
java - 接下来使用 Java Scanner 读取文本(模式模式)
我正在尝试使用 Scanner 类读取一行,使用 next(Pattern pattern) 方法捕获冒号之前和冒号之后的文本,以便 s1 = textbeforecolon 和 s2 = textaftercolon。
该行如下所示:
东西:别的东西
jquery - jQuery 切换下两个元素
I have a form select element that, when a certain value is selected, will toggle two other elements on the page (a dt / dd pair).
该事件被正确触发,但我无法切换元素 - 请注意我正在使用类选择器,因为页面上这些元素“集”的数量是可变的。这是我的代码:
lender_id 是我的select元素类,html代码如下(说明这个元素集可以在页面上出现多次):
jquery - Jquery - .next() 与许多父母的孩子
我正在编写一个脚本来突出显示日历中多个表格中的表格单元格。要突出显示的日期具有“可用”类。这是当前的 jQuery 代码:
但是,突出显示仅适用于包含悬停元素的表格。我假设 .next() 不是在返回的集合上运行$("td.available")
,而是在原始 DOM 上运行。
我应该使用什么功能来正确操作设备?
编辑:我想要发生的是相邻单元格也被突出显示。例如,这可以扩展,因此接下来的 7 个单元格也会突出显示。
如果我将鼠标悬停在包含 31 的单元格上,则要突出显示的其他单元格将位于另一个包含下个月的表中。我猜我需要使用各种“每个”来获得一组 td 元素。
javascript - jQuery nextAll -- 点击 h 元素切换所有 p 元素直到下一个 h
我正在创建一个常见问题解答页面,通过单击问题来切换答案。问题是h3
,答案是几个p
元素。像这样:
如何切换p
属于某个问题的所有元素?我的 JS 在页面上切换所有以下p
元素:
我不能使用div
's 或类)。
mysql - Efficient algorithm for Next button on a MySQL result set
I have a website that lets people view rows in a table (each row is a picture). There are more than 100,000 rows. You can view different subsets of the rows, and you can view them with different sort orders. While you are viewing one of the rows, you can click the "Next" or "Previous" buttons to go the next/previous row in the list.
How would you implement the "Next" and "Previous" features of the website?
More specifically, if you have an arbitrary query that returns a list of up to 100,000+ rows, and you know some information about the current row someone is viewing, how do you determine the NEXT row efficiently?
Here is the pseudo-code of the solution I came up with when the website was young, and it worked well when there were only 1000 rows, but now that there are 100,000 rows I think it is eating up too much memory.
While you are thinking about this problem, remember that the website can store more information about the current row than just its ID (for example, the position of the current row in the result set), and this information can be used as a hint to help determine the ID of the next row.
Edit: Sorry for not mentioning this earlier, but this isn't just a static website: rows can often be added to the list, and rows can be re-ordered in the list. (Much rarer, rows can be removed from the list.) I think that I should worry about that kind of thing, but maybe you can convince me otherwise.
jquery - 将焦点设置到jQuery中的下一个输入?
我目前有一个脚本,它将检查选择框的值,然后在它旁边启用一个文本字段,然后希望设置焦点。
我现在有这个在启用输入字段时效果很好......
老实说,我有点坚持“焦点”,我试过“$(this).next('input').focus();” 但这根本没有重点,尽管它也没有引发 Javascript 错误......
请问各位有什么想法吗?我真的坚持这一点,这对我正在构建的页面来说是一个非常简单但非常有用的补充!
谢谢
javascript - 使用 jQuery 查找下一个输入(父母的?)
我在表格中有一个复选框,当你点击它时,它会相应地改变背景颜色,就像这样......
这工作得很好,但是,我想我想做得更好,所以你点击表格行的任何地方,它都会选中该框并突出显示该行。
我尝试使用此代码,但不幸的是它不起作用:
这是 HTML 代码(删除了过多的内容以提高可读性...
任何帮助将不胜感激,谢谢!
python - 用于 Python pre-2.6 的 def next()?(而不是 object.next 方法)
Python 2.6+ 和 3.* 有 next(),但 pre-2.6 只提供 object.next 方法。有没有办法在 pre-2.6 中获得 next() 样式;也许是一些“def next():”构造?
jquery - jQuery选择下一个元素
我正在尝试使用 JQuery 来选择具有相同类的一组元素中的下一个元素。
这是 HTML 设置:
当我有第一个具有“sameClass”类的 div 时,我想从顶部 div 中删除“选定”类并将其应用到具有“sameClass”类的下一个 div,因此结果如下所示:
我希望你明白我的意思:)
更新:
我发现这个效果最好。
但是,如果 HTML 是这样的,我遇到了一个错误:
它不会选择第二个 P 块中的“sameClass”。知道为什么会这样吗?
伊夫