我究竟做错了什么?
} else {
$output = '<script type="text/javascript">jAlert("<font color="red">'$number1'</font>", "Alert Dialog Sample")</script>';
}
我正进入(状态:
解析错误:语法错误,意外的 T_VARIABLE
我究竟做错了什么?
} else {
$output = '<script type="text/javascript">jAlert("<font color="red">'$number1'</font>", "Alert Dialog Sample")</script>';
}
我正进入(状态:
解析错误:语法错误,意外的 T_VARIABLE
您错过了用于连接的 $number1 周围的点
$output = '<script type="text/javascript">jAlert("<font color="red">'.$number1.'</font>", "Alert Dialog Sample")</script>';
应该是这样的
$output = '<script type="text/javascript">jAlert("<font color="red">'.$number1.'</font>", "Alert Dialog Sample")</script>';
}
您需要使用字符串连接运算符。
} else {
$output = '<script type="text/javascript">jAlert("<font color="red">' . $number1 . '</font>", "Alert Dialog Sample")</script>';
}
我会避免使用字体标签,因为它已被弃用。