我设法在页面中设置第三方生成的iframe样式,但不能在其中设置任何内容。我无法弄清楚为什么下面的代码没有做任何事情:
jQuery(window).load(function() {
var $ = jQuery;
setTimeout(function() {
$('.mailmunch-embedded-iframe').find('#mailmunch-optin-form').css('border', '10px solid blue');
}, 1000);
});
如果我删除find('#mailmunch-optin-form')
以便将此代码应用于iframe本身就可以了。但对于其中的某些内容,它并不是。发生了什么事?