我使用 Intel 的 App Framework 创建了一个 Android 应用程序。它适用于 Android 3.0 和更新版本。但它不适用于其他低版本。我得到错误
NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7: An attempt was made to modify an object where modifications are not allowed. at path-to/appframework.js:529
这对应于 App Framework 的以下部分
514 html: function(html, cleanup) {
515 if (this.length === 0)
516 return this;
517 if (html === nundefined)
518 return this[0].innerHTML;
519
520 for (var i = 0; i < this.length; i++) {
521 if (cleanup !== false)
522 $.cleanUpContent(this[i], false, true);
523 if (isWin8) {
524 var item=this[i];
525 MSApp.execUnsafeLocalFunction(function() {
526 item.innerHTML = html;
527 });
528 } else
529 this[i].innerHTML = html;
530 }
531 return this;
532 },
这个问题的原因可能是什么。我希望有人帮助。我不知道为什么它可以在新的 Android 版本上运行,而不能在旧的 Android 版本上运行。