连接问题。确认消息不起作用

时间:2014-05-16 02:13:56

标签: javascript php concat

    $html .= '<a href =delete.php?pid='.$data['pid'].' onclick="return confirm('Are you sure you want to delete?');">Delete Item |';

我们遇到串联问题。 onclick不起作用。 解析错误:语法错误,意外&#39;是&#39; (T_STRING) - 出现此消息。

1 个答案:

答案 0 :(得分:1)

试试这个:

$html .= '<a href =delete.php?pid='.$data['pid'].' onclick="return confirm(\'Are you sure you want to delete?\');">Delete Item |';

您需要在确认消息周围转义单引号。