这是我的代码
$('#Cancel').click(function() {
var baseurl = ' <?php echo $this->strBaseUrl?>';
var cancel_msg = " <?php echo Messageclass::setMessage('CAN01')?>";
var where_to = confirm(cancel_msg);
if (where_to == true){
return true;
}else{
location.href = "";
}
});
但在变量 cancel_msg 下方显示错误。错误是
Uncaught SyntaxError: Unexpected token ILLEGAL
php 逻辑运行良好。如果有人知道这件事,请帮助我
提前致谢