我想在我的html页面上使用这部分代码,它工作正常,但我不明白如何纠正我在验证器上的错误。我把函数放在var chai = require('chai');
chai.use(require('chai-json-schema'));
中,但在div
中我们有同样的错误。这是stackoverflow question。
这是验证器错误:
错误:此时元素div上不允许属性ontouchend。
这是css代码:
a
在JS中我有:
:hover {
background: red;
}
然后在我的HTML中我有:
function fix() {
var el = this;
var par = el.parentNode;
var next = el.nextSibling;
par.removeChild(el);
setTimeout(function() {
par.insertBefore(el, next);
}, 0);
}