在表单提交后从PHP调用javascript函数

时间:2016-11-14 12:47:21

标签: javascript php html

我尝试在表单提交后调用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//
   } 
?>} 

请帮忙.. 在此先感谢

1 个答案:

答案 0 :(得分:0)

你可以尝试传递如下

echo '<script type="text/javascript">OnSelectionAcctType("Free Account");</script>';