函数的返回值中$(this).text()
$(".aaron2").on('click', function() {
$('a').wrap(function() {
return '<div class="' + $(this).text() + '" />';
})
})
$(this).text() 不是a元素吗??为什么class=a元素
还有 return '<div class="' + $(this).text() + '" />';为什么div不是成对出现
$(".aaron2").on('click', function() {
$('a').wrap(function() {
return '<div class="' + $(this).text() + '" />';
})
})
$(this).text() 不是a元素吗??为什么class=a元素
还有 return '<div class="' + $(this).text() + '" />';为什么div不是成对出现
2016-08-14
举报