$("#id").datebox('getValue')
$("input[name='mydate']").val()这种方式获取文本框的值。
如果不想用$("#id").datebox('getValue'),那么就别加id,或者说别用id选择器,给文本框加一个name属性,很轻松的就拿到值了。
datebox('getValue')去拿值,例如:$("input[name='mydate']").datebox('getValue'),会报TypeError: $.data(...) is undefined。