如果在我的网站的一个页面上出现一个 div,我正在尝试生成一个对话框(在所有网站的页面上)。更确切地说,我有这个网站,如果您在用户页面上收到友谊请求,我想要一个警报(或浮动框,我稍后会看到)通知您,无论您在网站上的哪个位置。
我尝试使用 if 指令 2 次:
if('http://'+location.hostname+location.pathname='/profile')
和
if($(".friends .new").length) {
alert("You have notifications pending");
}
我没有结果。