获取此错误:
prototype.js:5653 Uncaught TypeError: element.attachEvent is not a function
prototype.js:2304 Uncaught TypeError: Cannot read property 'length' of undefinedElement.Methods.hasClassName
prototype.js:5653 Uncaught TypeError: element.attachEvent is not a function
prototype.js:5653 Uncaug
当单击onepage checkout页面的continue按钮时,下一步不会加载,页面会卡在那里。我使用Chrome Inspect选项检查了页面,发现了以下错误:
form.js:41 Uncaught TypeError: Cannot read property 'select' of undefined
at t.init (form.js:41)
at t.initialize (form.js:37)
at t (prototype.js:1)
at (index):1426
init @ form.js:41 initialize @ form.js:37
我使用的是ExtJs 3.2.2。我编写了一个自定义上下文菜单来处理网格的headerclick事件。当我单击标题时,我得到一个"this.focusEl is undefined error“错误。我有一种感觉,这与上下文菜单中的范围有关,但我很困惑。FF会优雅地降级并仍然显示菜单,但IE的行为是不可预测的。
这是网格的headerclick事件:
headerclick: function(grid, columnIndex, e) {
e.stopEvent();
var colModel = grid.getColumnModel();
var col
在从1.4.9升级到角1.5.7之后,我得到了以下错误:
我使用AngularJs作为最后一个脚本标记,以避免与我的应用程序代码发生冲突。
Error: [$injector:modulerr] Failed to instantiate module ng due to:
this is null
$CompileProvider@https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.js:7656:3
.bind/<@http://localhost/wro/appJS.js?RESOURCE_VERSION=12
朋友们,我已经在注册页面和编辑页面上写了我的javascript,但是在我的编辑页面上我发现了两个错误,在Magento1.8中。我在layout/page.xml中添加了任何冲突,但没有得到任何解决方案。
TypeError: element.attachEvent is not a function
http://localhost/cdd_chile/js/prototype/prototype.js
Line 5653
TypeError: element.dispatchEvent is not a function
http://localhost/cdd_chile/js/pr
我真的不知道我的网站突然发生了什么。Js也没有在前端和后端工作。它向我展示了很多错误,都是由于js造成的。我在网上搜索了它,找到了一些答案,它们是:删除js文件夹,然后再上传它,或者将js文件夹和index.php文件夹上传到644或755或777。我试过所有的方法,但都没有用过。任何帮助都将不胜感激。
我的magento版本是1.6.0
正面错误:-
TypeError: jQuery(...).tabs is not a function
if ($(el.parentNode).hasClassName('active')) {
/kicxonline2/ (li
我尝试使用 Magento,我在处理付款时遇到错误,控制台打印如下。任何人都知道问题所在。
prototype.js:828 Uncaught TypeError: Cannot set property 'href' of undefined
at eval (eval at <anonymous> (https://example.com/js/prototype/prototype.js:612:64), <anonymous>:4:55)
at https://example.com/js/prototype/prototype.js:612:6
我正在为我的公司在sharepoint上制作一个仪表板,包括从网站集合中其他页面的列表和库中检索信息。我正在使用Corasworks工具(Sharepoint Site List Provider)以XML文件的形式检索子网站列表,为此,我使用'prototype.js‘构建了一些javascript代码,并使用我自己的方法来读取和解析该文件。我在internet explorer上测试了这个文件,它工作得很好,检索到了我需要的信息。然后我尝试在Sharepoint 2010上实现它,它工作得很好,然而,当我回去尝试向我的页面添加另一个web部件时,我无法实现,然后发现页面抛出了一个j
我有一个调用第三方支付功能的脚本,但有一行代码与Magento协议冲突:
<script>
pay.configure('pub_xxxxxxxxxxxxxxxxxxxxxx')
</script>
我在控制台中看到以下错误:
Uncaught ReferenceError: pay is not defined
at eval (eval at <anonymous> (prototype.js:612), <anonymous>:3:1)
at prototype.js:612
at prototype.js:865
at p
我将jquery脚本用于一个下拉菜单和一个图像查看器。这两个库冲突。
下面的脚本是我的库,我注意到了两个相互冲突的脚本。第一个块在我的脚本的头部,第二个块在我的标签之前(这是图像滑块脚本工作的唯一方式)。
<!-- Drop down plugin (within the <head> tag -->
<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/superfish.js"><
我现在学的都是prototype.js。有件事看起来很奇怪。例如,下面是我在firebug中运行的代码片段,url是,因为页面中有prototype.js。
var el2 = document.createElement('div');
var k=0;
for(var i in el2){ k++};
console.log(k);
结果是262,非常非常奇怪。因为如果在没有prototype.js的情况下在页面中运行相同的代码,结果是195。我的问题是prototype.js如何影响document.createElement方法。我在prototype.js中查询doc