0
내가 scala.s에 JS 라이브러리 문서에서이 코드를 변환 할 노력하고있어에서 : 나는 시도액세스 JS이 Scala.js
$('#myTable').on('click', 'tbody td', function() {
editor.inline(this, {
submitOnBlur: true
});
});
코드 :
$("#table").on("click", ".editable", (thiz: js.Dynamic) => {
editor.inline(thiz, JC(
submitOnBlur = true
))
})
는 그러나 그것은 나에게 오류를 제공 :
Cannot read property 'contents' of undefined at f.inline
jQuery에는 어떤 facade 라이브러리를 사용합니까? 즉, 빌드/소스의 어떤 의존성이'$'로 시작 하는가? – sjrd
@sjrd "be.doeraene"% "scalajs-jquery_sjs0.6_2.12"% "0.9.2"' – user2975535