昨晚我发布了一个类似的问题,不幸的是我包含了错误的代码以获得我需要的帮助。让我再试一次。
我正在尝试自动填写“约会”日期'我的网络表单中的字段,因此用户无需输入该字段。
目前,我在表单字段中使用下面的代码,该代码工作正常,但它没有以正确的格式提供日期以满足我的特定需求。
# move everything below where the item was up to close the gap
update tool_categories set display_order = display_order - 1 where display_order > <old position>;
# move everything down to make room at the top
update tool_categories set display_order = display_order + 1;
# move the specific item to the top
update tool_categories set display_order = 0 where category_id = ?;
上面的代码产生如下结果:
2017年3月22日星期三00:59:21 GMT-0700(太平洋夏令时)
我宁愿结果是这样的:
2017年3月22日星期三
答案 0 :(得分:0)
试试这个 -
if (list1.toLowerCase().contains(searchWord.toLowerCase())) {
System.out.println("Auction Found : ");
java.util.Arrays.toString(auctions);
}else {
System.out.println("No Match Found :");
}
(function() {
var days = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'];
var months = ['January','February','March','April','May','June','July','August','September','October','November','December'];
Date.prototype.getMonthName = function() {
return months[ this.getMonth() ];
};
Date.prototype.getDayName = function() {
return days[ this.getDay() ];
};
})();
var now = new Date();
var day = now.getDayName();
var month = now.getMonthName();
var date = now.getDate();
var year = now.getFullYear()
document.getElementById('date').value = day + ' ' + month + ' ' + date + ', ' + year;