我有这样的类的元素:
class="modal-view arch business"
如何在类中找到具有 modal- 起始词的元素并仅返回“view”词或 modal 之后的任何词?
我已经试过了
jQuery("*[class^='modal-'],*[class^='modal-'] a").live('click',function(){
var type = jQuery(this).attr('class').split('-')[1];
alert( type );
});
它不起作用,仅当类是模态视图时才显示视图,但如果还有其他一些类则不起作用。有人可以指出我正确的方向吗?
所以我试图找到模态之后的部分 - 但不是其他类。如果该类只有模态词,我使用的拆分代码有效