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 中的条件操作吗?
这意味着如果$(this_image).attr('src')未定义。src将等于''
$(this_image).attr('src')
src
''
Javascript中的表单表达式expr1 || expr2等价于 PHP 条件表达式expr1 ? expr1 : expr2。
expr1 || expr2
expr1 ? expr1 : expr2
你不能在 PHP 中使用更简单的表达式,因为它的 && 和 || 运算符总是返回布尔值。