本文介绍了说“期待更多源角色”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

下面的代码会出现错误期待更多来源字符,您可以在这个问题上帮助我。

That code below gives an error "Expecting more source characters" you may please any help me on this issue.

谢谢

CengizYücel
土耳其网络开发者表格

Cengiz YücelA web developer form Turkey

 <script type="text/javascript">
        $(document).ready(function () {
            $("a#aDevam").hover(function () {
                $("div#SekmeBtn").css({ 'background-image': 'url(images/SekmeButonDevam.jpg)'
                });
            }, function () {
                var cssObj = { 'background-color': '#ddd' }
                $("div#AA").css(cssObj);
            });
 </script>


推荐答案

期待更多源字符通常表示一条未终止的行,并且有一行。

"Expecting more source characters" normally indicates a line that's not terminated and there is one.

var cssObj = { 'background-color': '#ddd' }

需要分号。

这篇关于说“期待更多源角色”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 07:38