最佳答案
我最近升级了我的 PHPStorm IDE 版本,它现在警告我 jQuery 使用效率低下。
例如:
var property_single_location = $("#property [data-role='content'] .container");
提示以下警告:
检查 jQuery 选择器的使用效率 分割子代选择器,其前面有 ID 选择器和 警告可能被缓存的重复选择器。
所以我的问题是:
为什么这是低效的,什么是有效的方法来做上述选择器?
我猜是:
var property_single_location = $("#property").find("[data-role='content']").find(".container");
这条路对吗?