我尝试在表单提交后调用javascript函数并出现任何错误然后我希望此脚本运行但此代码无效。我是PHP新手请帮助
if(!empty($varAccountType))
{
<?php
if($varAccountType=='Free Account')
{
echo "inside $varAccountType"; //this line is working
echo '<script type="text/javascript">OnSelectionAcctType(Free Account);</script>';
//only this is not calling//
}
?>}
请帮忙.. 在此先感谢
答案 0 :(得分:0)
你可以尝试传递如下
echo '<script type="text/javascript">OnSelectionAcctType("Free Account");</script>';