我在 PHP 中有一个变量叫做$total = $db['total'];
现在我想在 Jquery 中获取它,所以我这样做了
<script>
$(function() {
console.log("<?php echo $total; ?>");
});
</script>
但我得到一些废话,比如console.log("<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
throws error uncaught syntaxError: Unexpected identifier。我究竟做错了什么?