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.
var src = $(this_image).attr('src') || '' ;
上記のコードは php の条件付き演算のように見えますか?
if$(this_image).attr('src')が定義されていないことを意味します。srcに等しくなります''
$(this_image).attr('src')
src
''
Javascriptでのフォームの式はexpr1 || expr2、PHPの条件式と同等expr1 ? expr1 : expr2です。
expr1 || expr2
expr1 ? expr1 : expr2
その&&と||のため、PHPでより単純な式を使用することはできません。演算子は常にブール値を返します。