MUI dtpicker 如何产生联动效果
Posted BuildYourDream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MUI dtpicker 如何产生联动效果相关的知识,希望对你有一定的参考价值。
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 如何产生联动效果的主要内容,如果未能解决你的问题,请参考以下文章