我需要在新标签页中打开链接,并在新页面上为div添加css样式。有我的代码
$('#add_member').click(function() {
url = "example.com";
details = window.open(url);
details.document.getElementsByClassName("invite-team-popup").style.display = "block !important";
});
链接打开完美但造型不起作用。我错过了什么?谢谢!
答案 0 :(得分:0)
document.getElementsByClassName("invite-team-popup")
为您提供类似于数组的项目(http://www.w3schools.com/js/js_htmldom_nodelist.asp),而不是jQuery中的节点列表,因此您无法直接更改所有节点的样式。使用jquery
$('.invite-team-popup')
或迭代