私は dragula.js を使用しており、mycode で ondrop イベントを使用しています。
drake.on('drop', function (el) {
console.log(el); //result <div>foo bar</div>
var n = typeof(el); //return object
var x = el.indexOf("test"); //error TypeError: el.indexOf is not a function(…)
// do another code
})
パラメータに"test"
存在するかどうかを確認したいのですが、エラーが発生します。el
どうも。