您好我正在执行 mysql 查询并得到以下结果
Array
(
[0] => 131.208.0.0
[1] => 141.128.0.0
[2] => 141.129.0.0
[3] => 155.182.0.0
[4] => 155.183.0.0
)
使用 jquery expand 我需要打印如下所示如果我单击 + 它应该展开并显示以下值。我在 UI +131、+141 和 +151 中显示唯一值。我需要将这些值传递给 php 并在单击时获得结果。
-131.0.0.0
-131.208.0.0
-141.0.0.0
-141.1298.0.0
-141.129.0.0
+155.182.0.0
我的代码
$(document).ready(function(){
//hide the all of the element with class msg_body
$(".msg_body").hide();
//toggle the componenet with class msg_body
$(".msg_head").click(function(){
$(this).next(".msg_body").slideToggle(600);
<div class="msg_body">
<?php
$octets = $this->Ip;
foreach($octets as $octet){
//echo "+".$octet."<br />";
}
// Here display unique octet value.
$octetets = $this->octent1;
foreach($octetets as $octet){
echo "+".$octet."<br />";
}
?>
</div>