Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
画像から .ppt ファイルまでのすべてのリンクを表示するページがあります。以下のコードを見て、特定の属性、つまり fileext=".ppt" をターゲットにして、拡張子に応じてリンクにクラスを追加するにはどうすればよいですか? ASP.NET MVC と jQuery を使用しています
<a class="screenshot" title="" fileext=".ppt" rel="http://google.com/test.jpg" href="#">
$('a[fileext=".ppt"]').addClass('foo');
詳細については:
fileextこれはファイルの種類ごとに個別に行うことができますが、ファイルの数が多い場合は、おそらく属性の値を取得して、それをクラス名に自動的に一致させたいと思うでしょう。あなたが持っているリンクとそれらに適用したいクラスの例をいくつか挙げることができれば、それは役に立ちます.
fileext