如何转换以下日期格式(2012 年 11 月 19 日星期一 13:29:40)
进入:
日/月/年
<html>
<head>
<script type="text/javascript">
function test(){
var d = Date()
alert(d)
}
</script>
</head>
<body>
<input onclick="test()" type="button" value="test" name="test">
</body>
</html>