我试图从jquerymobile datepicket获取日期,月份和年份,但是没有得到它,请参阅下面的html代码我已经使用但没有通过。
我知道jquery mobile是jquery ui的包装器,而datepicker用作日期所以尝试了相同但没有运气,任何人都可以请求帮助吗?
当我在浏览器中调试时,它会因未定义的错误而失败。
喜欢jquerymobile包装器: https://github.com/arschmitz/jquery-mobile-datepicker-wrapper api: http://demos.jquerymobile.com/1.4.1/datepicker/
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Date Picker</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css">
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
</head>
<body>
<div data-role="main" class="ui-content">
<label for="date">Date of Birth:</label>
<input type="date" name="dateob" id="dateob" value="">
<button>Submit</button>
</div>
</body>
<script>
$(document).ready(function(){
$("button").click(function(){
var dateob = $("#dateob").val();
var first = $("#dateob").date("getDate");
alert(first);
});
});
</script>
</html>
感谢。