-1

我很难弄清楚这种奇怪的 jQuery 语法是如何工作的。一切正常,除了当你点击按钮时。我不确定 {% %} 东西应该如何解决这样的功能。我目前收到此控制台消息: SyntaxError: Unexpected token )

我的代码:

// Check for new upload...if true refresh page
        {% if (file.new_up ) { %}
            {%=file.new_up=false%}
            {%=$("#no_ups").html("Your upload was successfully completed. <button>x</button>") %}
            {%=$("#no_ups").show("slow") %}

            {%=$("button").click(function ( )  { %}
              {%=$("#no_ups").hide("slow") %}
            {% }) %}

       {% } %}  
4

1 回答 1

0

我这样做了,而不是试图弄乱该服务器端代码

<script type="text/javascript">
$(document).ready(function () {
    $('#bClose').click(function () {
        $("#no_ups").hide("slow");
        $("#bClose").hide();
    });
});
</script>
于 2012-12-16T02:40:37.603 回答