Copy Code code as follows:
<?php
echo <<<js//output JavaScript code using multiple-line output
<script Language = "JavaScript" >
function func ()
{
if (Confirm ("Are OK with this?")
{
document.write ("I ' m ok!");
}
Else
{
document.write ("I ' m not ok!");
}
}
</SCRIPT>
JS;
?>
<body>
<a href= "#" href= "#" onclick= "Javascript:func ();" >please click</a>
</body>
Copy Code code as follows:
<?php
$confirm = "Are OK with this?"; Define the information on the confirmation box
$ok _msg = "I ' m ok!"; OK when the information
$not _ok_msg = "I ' m not ok!"; The information at cancel
echo "<script Language =" javascript\ ">"; Start out JavaScript code line by row
echo "function func ()";
echo "{";
echo "If" (Confirm (\ "Are you are OK with this?\")) ";
echo "{";
echo "document.write (\" I ' m ok!\ ");";
echo "}";
echo "Else";
echo "{";
echo "document.write (\" I ' m not Ok!\ ");";
echo "}";
echo "}";
echo "</SCRIPT>"; End of output
?>
<body>
<a href= "#" href= "#" onclick= "Javascript:func ();" >please click</a>
</body>