6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

テーブル内で特定の単語を含む行の背景色を変更する (jQuery,CSS)

Posted at

ほとんど自分用メモです。

WebGridなどで作ったテーブルのどこかの列に、状態を示す値が入っている場合(送信/未送信 など)、どちらかの値を含むときにはその行の背景色を変えたいというようなケースを想定しています。

参考: http://shiru-web.com/2017/09/03/01-72/

// テーブル内の特定の単語を含む行の背景色をピンクに変更

<script type="text/javascript">
	$('td:contains("ここに単語を入れる")').parent("tr").css("background-color", "#FFDBC9");
</script>
6
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?