Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

LOAD LẠI GIÁ TRỊ CHO COMBOBOX

1. Chèn jquery

Trong thẻ <head>, chèn code sau:

<script

src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js">

</script>

2. Gắn dữ liệu lại cho combobox

Ví dụ gắn lại dữ liệu cho combobox loại sản phẩm trong form cập nhật sản phẩm

a. Thêm script ngay sau thẻ </select> của combobox có id=loai

<script>

$( function() {

$("#loai" ).val({loai});

} );

</script>

b. Trước thẻ mở <form>, gọi hàm ob_start() như sau:

<?php ob_start();?>

c. Sau thẻ đóng </form>, gọi hàm ob_ get_clean () như sau:

<?php

$str=ob_get_clean();

$str = str_replace("{loai}" , $row_sp["loai"],$str);

echo $str;

?>

You might also like