参数列表jQuery之后的未捕获的SyntaxError:missing)

时间:2017-11-24 07:38:12

标签: javascript php jquery

我正在使用此脚本并在参数列表后收到错误“Uncaught SyntaxError:missing”。

请帮我摆脱讨厌的bug,花了很多时间却没有解决。

<script>
function endOfText(){
    <?php 
         $free_text = '<div style="display:block;width:600px;height:340px;background-color:black;">
                    <div style="height:35px;"></div>
                    <div style="height:20px;width:600px;text-align:center;color:white;font-size:20px;">PARTIE SUIVANTE</div>
                    <div style="height:30px;"></div>
                    <div style="display:block;width:300px;height:170px;margin-left:150px;cursor:default;
                    background-image:url("'.$server_free.'thumb/'.$drama_tab['shortcut'].'/'.$drama_tab['shortcut'].$epiNB.'-'.$part_1.'_thumb.jpg");background-size:300px 170px;background-repeat:no-repeat;background-position:center;">
                        <div><a href="javascript:void(0)" onclick="send_epi('.$part_1.')"><img src="'.$http.'images/next_free.png"/></a></div>
                    </div>
                    <div style="height:40px;"></div>
                    <div style="width:600px;text-align:center;color:white;">Ou utilisez les boutons numérotés à droite</div>
                </div>';

    echo '$("#free_video").append("'.$free_text.'");';
   ?>
}

1 个答案:

答案 0 :(得分:1)

你正在打印出来 echo '$("#free_video").append("'.$free_text.'");';

其中包含2x "以表示字符串。

在构建$free_text时,您还要"the background-image:url("/test/myImg.jpg")设置

所以最后你的错误是由

之类的东西产生的

$("#free_video").append("background-image:url("/test/myImg.jpg")");当然,它不会起作用。

解决方案:逃避"和/或过度使用'"

的使用情况