@manhng

Welcome to my blog!

jQuery Tips

February 13, 2018 11:47

Lấy danh sách từ HTML Select Options Collection

Theo tên: <select name="group"...

$('select[name=group]').each(function()
{
    console.log($(this).text());
});

Theo id: <select id="Job"...

$('#Job').each(function()
{
console.log($(this).text());
});

Categories

Recent posts