#里用

Vue里用moment.js

参考地址:http://momentjs.cn/1、首先安装momentnpminstallmoment--save2、在main.js里引入importmomentfrom'moment'//导入文件Vue.prototype.$moment=moment;//赋值使用moment.locale('zh-cn');/...
代码星球 代码星球·2020-12-30

python里用os.listdir和os.walk可以获得文件的路径

在我们的桌面上有一个file目录(文件夹),里面有3个文件:file(dir)|--|test1.txt--|test2.txt--|test3.txt用下面的程序可以获得文件的绝对路径:importospath=r'C:UsersAdministratorDesktopfile'forfilenameinos.lis...

jquery里用each遍历的值存到数组和字符串

$("img").each(function(){vara=$(this).attr("src");});//遍历后存放到数组中。。要用的时候再根据需要取.vararr=newArray();$("img").each(function(index){arr.push($(this).attr("src"));})//...