私はif文に頭を包み込もうとしています。私はこれが初めてです。
html5 データ属性からデータ (テキスト) を取得する非常に単純なスクリプトがあります。
var $datatext = $(this).data('explain');
ここで、html5 属性 data-explain が欠落しているか空の場合に if ステートメントが必要です。
var $success = if ($datatext < 0) {
// show some other text, maybe? =
$(this).text('Fail');
} else {
// show original, maybe? =
$(this).text($datatext);
}
繰り返しますが、頭を抱え込むのに苦労しました。ああ、これらのif。