2013-05-13 セレクタで属性名の部分一致 jquery 忘れてて調べるはめになったのでメモ // 前方一致 $("[attribute^=value]") // 後方一致 $("[attribute$=value]") // 部分一致 $("[attribute*=value]")