0

通常は使用できますが、次のように同じコード行にvar a = "<a href='index.php'>index</a>";2 つ以上を含める必要があります。'

var status = "<a href='javascript:window.open('atendimento.php','hhchat','top=70,left=70,width=480,height=450,status=no,location=no,statusbar=no');void(0);'><img src='img/atendimento.png' width='160' border='0' /></a>";

したがって、問題は、ここで行コードを開始および終了することです。'javascript:window.open('

そして、行の終わりまで続ける必要があります..どうすればできますか?

4

5 に答える 5

0

href= の後に次のようにエスケープ文字を使用します

var status = "<a href=\"javascript:window.open('atendimento.php','hhchat','top=70,left=70,width=480,height=450,status=no,location=no,statusbar=no');void(0);\"><img  src='img/atendimento.png' width='160' border='0' /></a>"; 
于 2013-05-24T13:43:46.197 に答える
0

" と ' を入れ替えて \" をエスケープする

var status = "<a href='javascript:window.open(\"atendimento.php\"...
于 2013-05-24T13:44:51.053 に答える