时间:2019-05-07 来源:小程序工厂
J***:
你好,请提供一下能复现问题的简单代码示例。
如***:
这个mpmb,调用的跟上面绘图的代码一样内容
【】input框的bindblur事件和bindfocus事件真机测试无效--微信小程序开发 ...
如***:
我这么写好像是错的,因为每次写字都会重新渲染一次页面。。。
J***:
可以将代码拷贝上来么?不要截代码的图。
如***:
//输入框输入显示
searchInputEvent: function (e) {
console.log(e.currentTarget.id)
if (e.currentTarget.id == "name") {
this.setData({ name: e.detail.value })
} else if (e.currentTarget.id == "company") {
this.setData({ company: e.detail.value })
} else if (e.currentTarget.id == "carrer") {
this.setData({ carrer: e.detail.value })
} else if (e.currentTarget.id == "address") {
this.setData({ address: e.detail.value })
} else if (e.currentTarget.id == "tel") {
this.setData({ tel: e.detail.value })
} else if (e.currentTarget.id == "call") {
this.setData({ call: e.detail.value })
} else if (e.currentTarget.id == "email") {
this.setData({ email: e.detail.value })
} else if (e.currentTarget.id == "internet") {
this.setData({ internet: e.detail.value })
}
// console.log(1);
this.mpmb();
},
【】wx.createInnerAudioContext使用stop无法停止当前语音 微信小程序开发 ...
J***:
额,我主要是要mpmb的实现……