PHP dynamically generates JavaScript code _php tips

Source: Internet
Author: User

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>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.