Home  >  Article  >  Web Front-end  >  js multiple select all and cancel all selection implementation code_javascript skills

js multiple select all and cancel all selection implementation code_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:47:131059browse
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: