<html>
<head>
<style type="text/css">
a.red {
color: red;
}
a.green {
color: green;
}
a.yellow {
color: yellow;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function() {
$('a[href^=red]').addClass('red');
$('a[href$=.jpg]').addClass('green');
$('a[href*=pic]').addClass('yellow');
});
</script>
</head>
<body>
<a href="red.gif">red</a></br>
<a href="green.jpg">green</a></br>
<a href="yellowpic.png">yellow</a>
</body>
</html>
问题:
在前端,只有红色有效,绿色和黄色无效,为什么?