我正在尝试解析FINNISH日期,例如。 1990年3月13日。 Javacript不会这样做,但我找到了应该能够的DateJS。
我将DateJS实施到我的项目中但它仍然不起作用!
以下是代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Pick the date</title>
<link type="text/css" href="css/smoothness/jquery-ui-1.8.14.custom.css" rel="Stylesheet" />
<script type="text/javascript" src="js/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.14.custom.min.js"></script>
<script src="inc/date-fi-FI.js" type="text/javascript"></script>
<script type="text/javascript">
function parseDate() {
var date = $('#date').val();
var parsedDate = Date.parse(date);
alert('Parsed date: '+parsedDate);
}
</script>
</head>
<body>
<form>
<input type="text" name="date" id="date" value ="13.03.1990" />
<input type="button" onclick="parseDate()" value="Parse the date" />
</form>
</body>
</html>
答案 0 :(得分:1)
你的链接断了。你测试页面没有加载DateJS文件;我得到404错误
它正在寻找的网址是http://resk.latvalashop.com/inc/date-fi-FI.js,但该网址不存在
答案 1 :(得分:0)
@Flambino是正确的,链接已经死了。使用工作链接测试相同的代码,您的代码按预期工作。