我可以将CSS样式添加到echo脚本警报消息中吗?

时间:2016-11-01 22:23:51

标签: php css styles

我想为.php文件中的弹出式警报回显脚本添加一些样式。

    if(empty($name)||empty($visitor_email))
{
    echo "<script>
        alert('All values are required.');
        window.location.href='index.html#contact';
        </script>";
    exit;
}

以上是我目前所拥有的,我希望对这部分进行设计:

echo "<script>
    alert('All values are required.');
    window.location.href='index.html#contact';
    </script>";
exit;

我该怎么做?我尝试在脚本中添加一个id,如下所示:

echo "<script id='alert'>
    alert('All values are required.');
    window.location.href='index.html#contact';
    </script>";
exit;

但是,这似乎没有用 - 我是否应该将我的css文件链接到我的.php文件中?

帮助将受到高度赞赏!

0 个答案:

没有答案