0
PHPなしで実行すると、うまく動作します。PHPでJavaScriptを実行するとUncaught SyntaxErrorが発生する
<?php
$it="$getuser[active]"; if($it==1)
{ echo '<script type="text/javascript">';
echo ' $(document).ready(function() {
var unique_id = $.gritter.add({
// (string | mandatory) the heading of the notification
title: "Welcome to my website!",
// (string | mandatory) the text inside the notification
text: "Activate Your Account Now!!<a href="active.php" target="_blank" style="color:#ffd777">Click Here</a>.",
// (string | optional) the image to display on the left
image: "img.jpg",
// (bool | optional) if you want it to fade out on its own or just
sit there
sticky: true,
// (int | optional) the time you want it to be alive for before
fading out
time: "",
// (string | optional) the class name you want to apply to that specific message
class_name: "my-sticky-class"
});';
echo ' return false;
});';
echo '</script> ';
}
?>
なぜあなたはこれをやっていますか?コードは読めない混乱です。 'echo'を使わずにJSを直接出力するだけです。また、 'uncaught syntax error'はメッセージの半分です。残りの半分は、エラーが何であるか、そしてその行が何であるかを正確に伝えます。 –
こんにちはRory私はPHP if文でこれを行いました。 PHPがなくてもうまく動作しています – yeah
まさに - それをPHPに入れたのはなぜですか? –