I am trying use a javascript function while passing php variables in it. For example:
onclick="alert()";
Now this does not work, instead gives an error-`ReferenceError: Can't find variable:right_username`(here the right_username is the answer i expect in the alert).
However if instead of `username` i use `EmpID`:
onclick="alert()";
EmpID being an int in the database works just fine.
以上就是Calling a javascript function while passing PHP variables的详细内容,更多请关注web前端其它相关文章!