如何在<spring:message code =“”>中设置ajax响应

时间:2016-08-05 21:59:15

标签: jquery ajax spring

我尝试在代码字段spring:message

中设置错误代码success: function(data, status){ if(data != 'undefined' && status == 'success'){ $("#xxx_form").replaceWith(<div class='ap-container'><h4 class='ap-label ap-text-brown'><spring:message code='" + $(data) + "'/></h4></div>); 的数据值

但是我得到了

  

javax.servlet.ServletException:javax.servlet.jsp.JspTagException:代码&#39;&#34; + $(数据)+&#34;&#39;对于语言环境&#39; en_US&#39;。

我无法获取数据值,任何人都可以帮我解决这个问题吗?

         foreach (HtmlElement el in webBrowser1.Document.GetElementsByTagName("h2"))
                    {
                        System.Threading.Thread.Sleep(5000);
                        Debug.WriteLine("2");
                        if (el.GetAttribute("classname") == "notranslate")
                        {
                            Debug.WriteLine("3");
                            groupname = el.InnerText;
                            listBox1.Items.Add(groupname);
                            listBox1.Items.Add(Empty);
                            Debug.WriteLine(groupname);
                        }
                    }

0 个答案:

没有答案