0

PHPで記述されたステートメントが機能するようになったときに、アラートボックスをポップアップさせるにはどうすればよいですか?

この作業を行うために今行っているJSコードは次のとおりです。

$(".bAlert").click( function() {
    jAlert('This is a custom alert box. Title and this text can be easily editted', 'Alert Dialog Sample');
});

このコードはボタンに使用すると正常に機能しますが、このステートメントが機能するときに表示されるようにしたいと思います。

if ($operation == "divide") { 
    $answer = $number1 / $number2;
    $operation = "÷";
} else {
    $output = "CODE TO MAKE THIS WORK HAS TO GO HERE"; 
}

ボタンを使用すると、次のように機能します。

<input type="button" value="Usual alert" class="basicBtn mr10 ml10 bAlert" />
4

1 に答える 1

0

それをelse文に入れるだけ

if ($operation == "divide"):
    $answer = $number1 / $number2;
    $operation = "&#247;";
 else:
    echo "<script>jAlert('This is a custom alert box. Title and this text can be easily editted', 'Alert Dialog Sample');</script>"; 
    endif;
于 2012-08-03T02:24:15.373 に答える