我一直想知道使用<? and <?php
. 例如在这行代码中。
function getWallboard()
{
$.ajax({
type: "POST",
url: "quality_control/qc_ajax.php",
data: "action=get_queue_totals&wallboard=<? echo $_REQUEST['wallboard'];?>",
success: function(msg){
$("#queue_nav").fadeIn("fast");
$("#queue_nav").html(msg);
}
});
$.ajax({
type: "POST",
url: "quality_control/qc_ajax.php",
data: "action=getQCWallboard&qctype=<?php echo $_REQUEST['qctype'];?>&wallboard=<? echo $_REQUEST['wallboard'];?>",
success: function(msg){
$("#wallboard").fadeIn("fast");
$("#wallboard").html(msg);
}
});
}
在某些情况下,我一直在出错。就像如果我改变<? to <?php or <?php to <?
,我的一些代码块不起作用。
这是我的第一篇文章。我希望我能得到关于使用它的想法。