write php inside javascript alert

后端 未结 3 1787
迷失自我
迷失自我 2021-01-22 14:33

I write PHP inside JS in the following way

alert();

echo__(\"Error-login\") correlates with

3条回答
  •  感情败类
    2021-01-22 14:54

    Your line becomes

    alert(Error-login);
    

    As you can see, you are missing the quotes:

    alert('Error-login');
    

    If somebody uses quotes in the translation, this will also generate an error:

    alert('Error's are here');
    

    So you need to escape single quotes before you pass it to Javascript.

提交回复
热议问题