How to do more condition in a ternary operator in my case

385 Views Asked by At

I want to wirte a test in my JSP using ternary operator my purpose is when the currentTab equal 'auther' or 'about' I want to use the class auther ,else no css class my question how I can do that using ternary operator if it's possible my code like this :

<body class="${CurrentTab eq 'author || about' ? 'author ' : '' }">
2

There are 2 best solutions below

0
On

What about:

<body class="${CurrentTab eq 'author' || CurrentTab eq 'about' ? 'auther' : '' }">

0
On

Your check is wrong!

CurrentTab eq 'author || about'

will compare the variable CurrentTab agains the string 'author || about'

You need to rewrite the check to compare the variable with each string, something like

CurrentTab eq 'author' || CurrentTab eq 'about' ? 'author' : ''