猿问

如何编写一个脚本,运行时将数字增加 1?

我想在 Windows 中编写一个脚本,当用户单击它时,它会将计数增加 1。


脚本有一个变量整数 000000 另一个变量字符串数字


当用户从桌面单击脚本时,它会将整数增加到 000001 并附加在数字前面,因此它变为 number000001,当用户下次单击时它增加到 number000002,依此类推。


我确定这是一个简单的脚本,但我不确定从哪里开始或使用哪种语言,如果有人能帮助我就太好了


我认为这将类似于但不确定我在做什么,如何保存上次运行的增量,如何在从桌面单击图标时运行触发脚本。


Integer = 000000 

String = "Number"


Integer++ 


IntegerString = Number+Integer

谢谢。


慕尼黑5688855
浏览 185回答 2
2回答

慕哥9229398

在 1,2,3 等之前你需要这个 00000 吗?试试这个:let i = 0;const s = 'Number';const intString = s + format(i++);和数字格式化程序:&nbsp;function format(num) {&nbsp; &nbsp; &nbsp;let strNum = num.toString();&nbsp; &nbsp; &nbsp;const numSize = strNum.length;&nbsp; &nbsp; &nbsp;for(i = numSize; i < 6; i++) {&nbsp; &nbsp; &nbsp; &nbsp; strNum = 0 + strNum;&nbsp; &nbsp; &nbsp;}&nbsp;}

aluckdog

看看这可能会解决您的问题let dv = "000000";document.querySelector('button').addEventListener('click', () => {&nbsp;let increment = ++dv;&nbsp;increment = ("000000" + increment).slice(-6);&nbsp;document.querySelector('span').innerText = increment})<button>increment</button><h1>number<span>000000</span></h1>
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答