<script>
$(document).ready(function(){
$(".comments").keyup(function(){
id = this.id;
comment = $("#com"+id).val();
alert(comment);
});
});
</script>
<?php
$this->db->select('*');
$this->db->from('contact');
$where = "admin_id like '%$client_id%'";
$this->db->where($where);
$query = $this->db->get();
$result = $query->result_array();
foreach ($result as $fet)
{
?>
<tr>
<td>
<input type="text" name="comments" class="comments" id="com<?php echo $fet['id']; ?>" />
</td>
<td>
<input type="submit" name="submit" id="submit" value="save" />
</td>
</tr>
<?php
}
?>
在這段代碼中我有多個文本字段名稱的意見,我想提醒多個註釋文本字段的值。在這裏,當我寫一些東西時,它顯示出我不確定。那麼,如何使用不同的ID獲取評論字段的值?請幫幫我。
謝謝你
你並不需要通過ID去。但是你需要使用'$(this)'而不是'this'。 '$(本).VAL()' – CBroe