jQuery通过input标签的name获取值
jQuery(document).ready(function(){
jQuery("input[name='friend']").click(function(){
jQuery(this).toggleClass(function(){
if(jQuery(this).hasClass('attention')){
jQuery(this).removeClass('attention');
jQuery(this).val("+关注"); //改按钮显示的字
return 'NOattention';
}else{
jQuery(this).removeClass('NOattention'); //改颜色样式
jQuery(this).val("已关注");
return 'attention';
}
})
});