我在下面的代码中使用php print编写onclick方法时遇到问题:
<?php print "<p><small> <a href='#' onclick='ajaxMenu('comments.php?news=".$fileContent['id']."');>".$number. " ".$text." </small> </a> </p>"; ?>
鉴于代码不起作用。我相信它是因为单引号和双引号的组合。任何人都可以帮我解决这个问题吗?
答案 0 :(得分:3)
你可以通过正斜杠来逃避“角色”
<?php echo( "<a href=\"#\" onclick=\"onMenu('this is the menu');\">This is a link</a>" ); ?>