获取点击的 iframe 的内容后,对其进行过滤以获取具有自定义属性的第一个元素data-type = filled
。但我无法在该特定元素上应用类。
这是我的代码:
var clicked_content = event.target.outerHTML, // gives the content being clicked
content = $(clicked_content).find("*[data-type='filled']:first").andSelf().html(); // this gives me the required content
// this was supposed to add a class to particular element
content.parent.addClass("highlight");
我也确实尝试过这样做:
$(event.target).children().find("*[data-type='filled']:first").andSelf().addClass('highlight');