在下面的代碼中我有一個數組arrSGoal。點擊RemoveGoal我需要刪除或設置值爲0的數組中的ID。 數組在php中。不知道如何在jQuery中使用。在jquery中使用php數組
<SCRIPT LANGUAGE="JavaScript">
$(document).ready(function() {
$('a.removegoal').click(function(e)
{
e.preventDefault();
//Getting the TR to remove it in case of successful deletion
var objRow = $(this).closest('tr');
objRow.remove();
});
});
$arrSGoal[$i] = $row->id_goals;
?>
<tr>
<td style='vertical-align:top;'>
<textarea name="stg<?php print $i;?>" id="short_goal" class="short_go"><?php print $row->goal_description?></textarea>
</TD > < TD風格= '垂直對齊:底部;' NOWRAP > <跨度類= '隱藏' >回聲$我</SPAN > < A HREF =#類= 「removegoal」 >刪除目標
它工作。 var arrayFromPHP = <?php echo json_encode($ arrSGoal); ?>; (elem); alert(i); }); – ASD 2010-01-02 11:30:07
我工作在jscon_encoded數組。我怎麼能得到修改後的數組返回到PHP – ASD 2010-01-02 11:55:48
返回數組的唯一方法是Ajax:http://docs.jquery.com/Ajax – 2010-01-02 12:51:29