码迷,mamicode.com
首页 > 其他好文 > 详细

MUI dtpicker 如何产生联动效果

时间:2018-05-16 18:41:26      阅读:408      评论:0      收藏:0      [点我收藏+]

标签:class   -o   href   inf   lse   image   date   sha   同步   

1.登录官网 下载demo,

 这是地址 http://dev.dcloud.net.cn/mui/

如下图,并不能发生级联效果:输入框的显示和隐藏到下方的容器 数据并不能同步

技术分享图片

解决办法:

技术分享图片

把下面这段代码copy到 html里,再点击试试

var data_value =document.getElementById(id).innerHTML ;
if(id == "demo1"){
	document.getElementById(id).setAttribute(‘data-options‘,‘{"value":"‘+data_value+‘"}‘);
}else if(id == "demo2"){
	document.getElementById(id).setAttribute(‘data-options‘,‘{"value":"‘+data_value+‘","type":"date"}‘);
}else if(id == "demo3"){
	document.getElementById(id).setAttribute(‘data-options‘,‘{"value":"‘+data_value+‘"}‘);
}else if(id == "demo4"){
	document.getElementById(id).setAttribute(‘data-options‘,‘{"value":"‘+data_value+‘","type":"date"}‘);
}else if(id == "demo5"){
	document.getElementById(id).setAttribute(‘data-options‘,‘{"value":"‘+data_value+‘","type":"time"}‘);
}else if(id == "demo6"){
	document.getElementById(id).setAttribute(‘data-options‘,‘{"value":"‘+data_value+‘","type":"month"}‘);
}else if(id == "demo7"){
	document.getElementById(id).setAttribute(‘data-options‘,‘{"value":"‘+data_value+‘","type":"hour",
     "customData":{"h":[{"text":"上午","value":"上午"},{"text":"下午","value":"下午"},
     {"text":"晚上","value":"晚上"}]},"labels":["年", "月", "日", "时段", "分"]}‘ ); }

 一看:

技术分享图片

二看:

技术分享图片

 

MUI dtpicker 如何产生联动效果

标签:class   -o   href   inf   lse   image   date   sha   同步   

原文地址:https://www.cnblogs.com/Li-Sun-Moon/p/9047093.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!