使用变量的JQuery选择器

时间:2014-05-11 20:57:00

标签: javascript php jquery syntax-error selector

无论如何我都会收到这个错误。有什么想法吗?

Parse error: syntax error, unexpected '(', expecting T_VARIABLE or '$' in /disks/diskh/zco/comw/html-olGEUddM/wedding/wedding_results.php on line 85

继承我的代码:

if($("'#".$row['name']."'")){//error in this line
  $newHTML = "";
  $select = $("#" . $row['name'] . "Select");
  $select.options[select.options.length] = new Option($newDate,$newDate);
}

1 个答案:

答案 0 :(得分:0)

你正在混合你的JavaScript与PHP。您需要将if作为字符串传递:

echo "if($('#".$row['name']."')){";

那或者如果你想要if语句在php中。你无法尝试评估其中的javascript。 Javascript在浏览器中进行评估。不是服务器。