Windows 8 Phonegap应用程序JQuery Mobile Security Exception

时间:2013-08-26 23:46:32

标签: jquery-mobile windows-8 cordova

我使用phonegap 2.9.0创建了一个Windows 8项目,然后尝试在其中使用JQuery移动库。但是我得到以下安全异常。知道如何解决这个问题吗?。

Exception was thrown at line 4, column 7009 in ms-appx://c6a291ce-903f-47ab-b167-  cb8378ffb051/www/libs/jquery.core/jquery-1.9.1.min.js

 0x800c001c - JavaScript runtime error: Unable to add dynamic content. A script attempted    to inject dynamic content, or elements previously modified dynamically, that might be unsafe.   For example, using the innerHTML property to add script or malformed HTML will generate this   exception. Use the toStaticHTML method to filter dynamic content, or explicitly create   elements and attributes with a method such as createElement.  For more information, see   http://go.microsoft.com/fwlink/?LinkID=247104.

 If there is a handler for this exception, the program may be safely continued.

1 个答案:

答案 0 :(得分:2)

我遇到了同样的问题。看来问题的关键在于,当您从字符串创建元素时,WinJS安全模型将不允许JQuery dom操作,例如使用.html()方法。

有关详细信息,请参阅以下内容: http://blogs.msdn.com/b/windowsappdev/archive/2013/04/01/windows-store-app-support-in-jquery-version-2-0.aspx

http://net.tutsplus.com/tutorials/javascript-ajax/building-windows-store-applications-with-jquery-2-0/

总而言之,聪明的人在JQuery 2.0中已经解决了这个问题。

所以我会考虑使用JQuery 2.0但是它能与JQuery Mobile一起使用吗?我还没有确定,所以我可能会考虑完全构建和附加dom元素,而不是使用.html()方法。

但请注意,我还没有尝试过任何这些方法,所以不能保证它们的有效性。