jquery – 为什么我们用select标签写.attr(‘selected’,’selected’)

为什么我们用select标签写.attr(‘selected’,’selected’)

例如:

$('#countryList option').filter(function () {
 return ($(this).text() == findText); }).attr('selected','selected');
});

它到底意味着什么?

最佳答案 .attr的解释(‘selected’,’selected’).

.attr中的第一个参数表示要指向的属性,而属性的第二个参数设置值作为第一个参数传递.

如果我们只有.attr(‘selected’),那么它只返回selected属性的值.

点赞