jQuery and other libraries

落爺英雄遲暮 提交于 2020-01-02 11:09:11

问题


I am having this issue with jQuery and have no idea how to solve it .... can anyone help or provide some assistance!?

[Exception... "Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIDOMXPathEvaluator.evaluate]" nsresult: "0x80070057 (NS_ERROR_ILLEGAL_VALUE)" location: "JS frame :: http://example.com/wp-content/plugins/IMM-Glossary/JavaScripts/prototype.js :: anonymous :: line 1081" data: no] Source: http://example.com/wp-content/plugins/IMM-Glossary/JavaScripts/prototype.js

Thanks

Edit: Thanks for the response :) Problem is that I read the http://docs.jquery.com/Using_jQuery_with_Other_Libraries - and i use "jQuery" now ? So not sure why its occurring?

P.S - About code - I don't even use my own code. I just use this plugin and jquery - and it throws error ?


回答1:


  1. Your error points to a prototype script, not jQuery.
  2. You haven't posted any code.
  3. Google search.



回答2:


First, from the error message, it seems the problem is with the Prototype js library instead on the jQuery library.

Second, the form of the error code (0x80070057) indicates that it's a problem with a COM component.

I'm guessing that you passed an jQuery selector to Prototype -- both use $() -- and prototype doesn't know how to evaluate it. (Prototype passes it to the nsIDOMXPathEvaluator component -- I'm gonna guess that is the "Netscape Xpath Evaluater"-- which balks at the bad XPath format)




回答3:


Try to use $.noConflict() - Using jQuery with Other Libraries



来源:https://stackoverflow.com/questions/790912/jquery-and-other-libraries

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!