Mobiscroll 怎么获取选择的值啊
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mobiscroll 怎么获取选择的值啊相关的知识,希望对你有一定的参考价值。
我从网上下载的Mobiscroll插件,布置到网页后,可以弹出。点击确定后也显示选择的值,但怎么获取这个值传给服务器呢?点击确定后input 控件上面显示选好的值,但用开发者工具查看input控件的val 是没有内容的啊。。
你直接用代码试试
$("#你input的ID").val()
我的浏览器里可以正常得到这个是jq版本的
来自:求助得到的回答 参考技术A$(function ()
var currYear = (new Date()).getFullYear();
start=currYear - 20;
end= currYear + 20 ;
$("#demo").mobiscroll().date(
theme: 'android-ics light', //皮肤样式
display: 'modal', //显示方式
mode:'scroller',
dateFormat: 'yy-mm-dd', // 日期格式
setText: '确定', //确认按钮名称
cancelText: '取消',//取消按钮名籍我
dateOrder: 'yymmdd', //面板中日期排列格式
dayText: '日', monthText: '月', yearText: '年', //面板中年月日文字
yearText: '年', monthText: '月', dayText: '日', //面板中年月日文字
startYear:start, //开始年份
endYear:end,//结束年份
headerText: function (valueText) array = valueText.split('-'); return array[0] + "年" + array[1] + "月"+array[2]+"日"; , //自定义弹出框头部格式
onSelect:function(valueText,inst)
//点击确定以后的结果
alert(valueText);
);
)
参考技术B onselect:function(value)
conosle.log(value)
easyui中的datagrid怎么获取不到输入框的值啊?
当我输入100后,获取的是我给默认的1.
100就获取不了。求大神解答
var height = $(window).height()-120;
stView_layout = $('#stView_layout').layout(
width: width,
height: height
);
station_view = $('#stationView').window(
title: '测站导航',
left:50,
top:80,
width: width,
modal: false,
shadow: false,
closed: true,
height: height,
onResize:function(w,h)
if(stView_treegrid)
stView_treegrid.treegrid(
width:w-20,
height:h-260
);
); 参考技术B 源码可以贴出来的
以上是关于Mobiscroll 怎么获取选择的值啊的主要内容,如果未能解决你的问题,请参考以下文章