Home > Web Front-end > JS Tutorial > body text

js multiple select all and cancel all selection implementation code_javascript skills

WBOY
Release: 2016-05-16 17:47:13
Original
1089 people have browsed it
Copy code The code is as follows:

$("select").change(function(){
var n = $(this).children().length;
var obj;
var i = 1;
$(this).children().each(function(){
if(i == n)
{
alert($(this).text());
}
i ;
});
});

Based on the above two methods, I easily got the effect I wanted, as follows:
Copy code The code is as follows:

function selectall()
{
$("select").children().each(function(){$(this).attr("selected" ,"selected")})
}

Used children() and $(this).attr("selected","selected") respectively
A js usage
Copy code The code is as follows:





Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template