[ERROR] : TypeError: undefined is not a constructor (evaluating 'new $.DtPicker(options)')
7***@qq.com
- 发布:2017-06-01 08:39
- 更新:2018-01-04 17:37
- 阅读:3895
[ERROR] : TypeError: undefined is not a constructor (evaluating 'new $.DtPicker(options)')
分类:MUI
chender - 与人为善
options未定义
你是通过evalJS执行一段js代码的时候报的错?
如果是的话,必须保证你的目标webview中有options这个对象,而不是当前webview中有
7***@qq.com (作者)
var optionsJson = this.getAttribute('data-options') || '{}';
var options = JSON.parse(optionsJson);
var id = this.getAttribute('id');
/*
*/
var picker = new $.DtPicker(options);
2017-06-01 09:08
chender
哦,new是关键字,你直接var picker = $.DtPicker(options)就好了
2017-06-01 11:57