我有一个 iframe(id=iframe),我正在尝试将 onClick 事件附加到每个 iframe。iframe 在域内。
$("#iframe").contents().find('img').each(function () {
$(this).on('click', function (event) {
$('#image-box', window.parent.document).show(300);
window.parent.document.getImage(this);
});
});
提前致谢