如何使用javascript来提醒这些PHP错误消息?

时间:2013-11-05 03:08:43

标签: javascript

我如何javascript警告我的PHP错误消息?这是我的代码:

<?php echo showmessage($msg)?>

我想让它变成警报,我该怎么做?

2 个答案:

答案 0 :(得分:1)

 ?>
  <script type="text/javascript">
    alert("The error is  <?php echo $msg ?>");
    history.back();
  </script>
<?php

或者

echo '<script language="javascript">';
echo 'alert(Message here)';
echo '</script>';

答案 1 :(得分:1)

使用json_encode可确保转义需要转义的字符。

<script>
  alert(<?php echo json_encode($msg); ?>);
</script>