JQuery AJAX exception only in Firefox: “Node cannot be inserted at the specified point in the hierarchy” (HierarchyRequestError)

前端 未结 5 1054
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-13 08:08

Very strange problem: I have a 2-part dropdown, where selecting a State will then add a second dropdown giving you a list of MSA Areas in that State.

This is done us

5条回答
  •  Happy的楠姐
    2021-01-13 08:36

    I had the same problem in FF only. My Servlet was returning back text with a content type "text". FF interprets this as text/xml and tries to insert xml in the body - hence the error

    I changed the content type to text/plain - all is well

提交回复
热议问题