Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 PHP 定义一个元素中有多少个子元素?
执行与 JQuery 相同的操作:
$($element).children().length;
如果您使用 PHP 来呈现文档,那么您可以使用类似phpQuery的东西。如果没有,那么你不能。
这是因为 PHP 是在 HTML 渲染之前执行的,所以没有办法通过 PHP 访问 DOM。