请帮我将我的功能添加到所有 div 中。我想使用“每个”,但不知道如何使用。
我需要 2 条警报消息,但是当尝试使用 $('div').test() 函数时,我只成为第一个 div。有了它仍然有效。
<html>
<head>
<style type="text/css">
div {
width:100px;
height:100px;
background: yellow;
float: left;
margin: 20px;
}
</style>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
</head>
<body>
<div id="a"></div>
<div id="b"></div>
<script type="text/javascript">
(function( $ ){
$.fn.test = function() {
alert(this.attr('id'));
};
})( jQuery );
//work
$('#a').test();
// not work
//$('div').test();
</script>
</body>
</html>
谢谢!