target_text = $(this).attr("class");
目前返回的是:
some-class sfHover
我不想让班级“sfHover”.如何从变量中删除它?
(我想要获取的类是动态生成的,所以我不能监听特定的名称,只能使用它们.)
谢谢
var target_text = this.className.replace(/sfHover/,"");