0

我有一个数组“名称”。我需要检查这个数组中的元素是否存在于 html 的列表中。

php中的代码如下:

foreach ($name as $value2) {
  echo "<script>
  if($('li:not(:contains(\"".$value2."\"))'))
     {
       alert('".$value2." does not  exists');
     }  
  else
     {
       alert('".$value2." exists');
     }
  </script>";
 }

但是我收到警报,因为每个元素都不存在该值。

4

2 回答 2

0

您可以使用 PHP 数组:

<?php
$os = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $os)) {
    echo "Got Irix";
}
if (in_array("mac", $os)) {
    echo "Got mac";
}
?>

参考

你可以这样尝试:

 <?php foreach ($name as $value2) {  ?>
 <script>
  if($('li:not(:contains(\"" <?php echo $value2; ?>"\"))'))
     {
       alert('"<?php echo $value2; ?>" does not  exists');
     }  
  else
     {
       alert('"<?php echo $value2; ?>" exists');
     }
  </script>
 <?php } ?>
于 2013-01-03T07:39:59.717 回答
0

假设您无法在服务器上测试 html 的内容(例如在 ajax 或其他东西之后),创建

<script>
.
</script>
<script>
.
</script>
<script>
.
</script>

什么时候可以

$jsString = implode("','", $array);
$jsString = "'".$jsString."'";
?>
<script>
var vals = [<? echo $jsString; ?>];
var contains =[],notContains=[],liContains=[];
$.each(vals,function(i,val) {
  var li = $('li:contains("'+val+'")');
  if (li) {
    contains.push(val); // all vals presents
    liContains.push(li); // all (sets of) LIs with the vals
  }
  else {
    notContains.push(val); // all vals not present
  }
});
 alert(contains.length);
</script>
于 2013-01-03T07:52:40.687 回答