前端中将字符串怎么转换成rmb形式
答案:1 悬赏:70 手机版
解决时间 2021-11-18 21:20
- 提问者网友:骨子里的高雅
- 2021-11-18 00:52
前端中将字符串怎么转换成rmb形式
最佳答案
- 五星知识达人网友:白昼之月
- 2021-11-18 02:01
Date对象转字符串有以下转换函数 :
toString() 把 Date 对象转换为字符串。
toTimeString() 把 Date 对象的时间部分转换为字符串。
toDateString() 把 Date 对象的日期部分转换为字符串。
toGMTString() 请使用 toUTCString() 方法代替。
toUTCString() 根据世界时,把 Date 对象转换为字符串。
toLocaleString() 根据本地时间格式,把 Date 对象转换为字符串。
toLocaleTimeString() 根据本地时间格式,把 Date 对象的时间部分转换为字符串。
toLocaleDateString() 根据本地时间格式,把 Date 对象的日期部分转换为字符串。
如果是单纯的转为字符串 可以用 toString()
eg:
1
2
var date = new Date();
document.write(data.toString());
toString() 把 Date 对象转换为字符串。
toTimeString() 把 Date 对象的时间部分转换为字符串。
toDateString() 把 Date 对象的日期部分转换为字符串。
toGMTString() 请使用 toUTCString() 方法代替。
toUTCString() 根据世界时,把 Date 对象转换为字符串。
toLocaleString() 根据本地时间格式,把 Date 对象转换为字符串。
toLocaleTimeString() 根据本地时间格式,把 Date 对象的时间部分转换为字符串。
toLocaleDateString() 根据本地时间格式,把 Date 对象的日期部分转换为字符串。
如果是单纯的转为字符串 可以用 toString()
eg:
1
2
var date = new Date();
document.write(data.toString());
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯