- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
描述:
我需要制作一个电子表格类型的计算器来跟踪在线游戏(ArcheAge)中的信息。该“电子表格”必须保存信息并以 5 分钟为增量自动更新一组值(最好将其作为文件保存到计算机上。这是我正在开发的一个离线应用程序)。
详细信息:
我被要求协助设置 OpenOffice 电子表格来跟踪和保存信息。大多数数据都是手动输入并保存在他们已经制作的电子表格中,但是他在让一个字段以 5 分钟为增量自动更新时遇到了问题。
我查看了他的内容,并尝试建立一个简单的(劳动力 = 劳动力 + 10 [每 5 分钟])类型的公式,但由于电子表格无法使用循环引用,因此无法将该字段设置为自动-每 5 分钟更新一次。
电子表格有 9 列数据和 24 行组。这些列是 (id)(charName)(labor)(freeLabor)(vocal)(tokens)(timeOnline)(realTime)(subscription),另外他添加了一个单元格来保存日期和另一个单元格来保存时间(均来自系统)时钟 - Date() 和 Now())。
每行是 1 个字符的信息(相当于数据库表)。
他希望每个 Angular 色的(劳动力)值每 5 分钟自动更新为新劳动力值(劳动力 = 劳动力 + 10),但这是一个循环引用,电子表格不能执行此功能(至少没有第三方程序或加载项,据我所知)。
因此,我查看了它并尝试找到解决方法。在网上查找了很多帖子并接近找到解决方案,但是没有一个对我们需要做的事情有帮助。因此,我提出为他设置一个 .html 文档以供离线使用,并对其进行编码以使其像电子表格一样工作。代码如下。
需求:编辑:引用下面的更改 3。
我需要尝试找到一种方法将此表单数据保存到主机 PC 上的文件中(离线),这样用户就不必在每次运行表单时手动重新输入所有数据.
注意 - 此部分在该行下方进行了更改。
我需要一个非 PhP(javascript 和 html 或其他方法)解决方案来增加每个字符集的劳动单元的值,使其每 5 分钟增加 10 点。他希望可以在不破坏代码的情况下修改单元格数据(例如 getData,运行代码以递增,并将新值重写到单元格中)。我还想尝试将代码保存到文件中,这样他就不必在每次运行文档时重新输入值。
该解决方案应使用 html 和 javascript 显示表格、电子表格或数据库等数据。如果您有其他解决方案方法,请随时添加您对如何创建此数据表的想法。
编辑 1:我想我应该提到(劳动力)的值不应超过 5,000 并且不能低于 0。 - 于 2016 年 4 月 27 日 01:43 添加
编辑 2:在“需求” block 中添加了对所需内容的更好识别。 - 2016 年 4 月 27 日 01:51 添加
编辑 3:修改了用于人工计算的第一个 Javascript 代码。它现在是 for 循环内的嵌套 if 语句,并且现在可以完美运行。现在我需要的只是一种将表单数据保存到文档中的方法,或者一个单独的文档供程序调用(如果可能的话)。更新了需求部分。 - 2016 年 4 月 27 日 05:52
代码如下:
HTML
<section>
<!-- Used to create time stamp at top of page. -->
<p id="time"></p>
<!-- Name of page. -->
<header style="text-align: center;">ArcheAge Test Calculator</header>
<br />
<!-- The Form shown on the page. -->
<form id-form1" name="testcalc">
<!-- Nested Table in Form.-->
<table>
<tr>
<th>Character Name</th>
<th>Labor</th>
<th>Free Labor</th>
<th>Vocation</th>
<th>Tokens</th>
<th>Time/Online</th>
<th>Subscription</th>
</tr>
<tr>
<td><input type="text" id="name1" value="Solareclipse" name="charname"/></td>
<td><input type="text" id="labor1" value="" name="labor"/></th>
<td><input type="text" id="free1" value="Test data" name="freelabor"/></td>
<td><input type="text" id="vocation1" value="Test data" name="voc"/></td>
<td><input type="text" id="tokens1" value="Test data" name="token"/></td>
<td><input type="text" id="online1" value="Test data" name="online"/></td>
<td><input type="text" id="sub1" value="Test data" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name2" value="Farmergirl" name="charname"/></td>
<td><input type="text" id="labor2"/></td>
<td><input type="text" id="free2" value="" name="freelabor"/></td>
<td><input type="text" id="vocation2" value="" name="voc"/></td>
<td><input type="text" id="tokens2" value="" name="token"/></td>
<td><input type="text" id="online2" value="" name="online"/></td>
<td><input type="text" id="sub2" value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name3" value="Peacemaker" name="charname"/></td>
<td><input type="text" id="labor3"/></td>
<td><input type="text" id="free3" value="" name="freelabor"/></td>
<td><input type="text" id="vocation3" value="" name="voc"/></td>
<td><input type="text" id="tokens3" value="" name="token"/></td>
<td><input type="text" id="online3" value="" name="online"/></td>
<td><input type="text" id="sub3" value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name4" value="Irene" name="charname"/></td>
<td><input type="text" id="labor4"/></td>
<td><input type="text" id="free4" value="" name="freelabor"/></td>
<td><input type="text" id="vocation4" value="" name="voc"/></td>
<td><input type="text" id="tokens4" value="" name="token"/></td>
<td><input type="text" id="online4" value="" name="online"/></td>
<td><input type="text" id="sub4" value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name5" value="Admiral" name="charname"/></td>
<td><input type="text" id="labor5"/></td>
<td><input type="text" id="free5" value="" name="freelabor"/></td>
<td><input type="text" id="vocation5" value="" name="voc"/></td>
<td><input type="text" id="tokens5" value="" name="token"/></td>
<td><input type="text" id="online5" value="" name="online"/></td>
<td><input type="text" id="sub5" value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name6" value="Huffer" name="charname"/></td>
<td><input type="text" id="labor6"/></td>
<td><input type="text" id="free6" value="" name="freelabor"/></td>
<td><input type="text" id="vocation6" value="" name="voc"/></td>
<td><input type="text" id="tokens6" value="" name="token"/></td>
<td><input type="text" id="online6" value="" name="online"/></td>
<td><input type="text" id="sub6" value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name7" value="Sisco" name="charname"/></td>
<td><input type="text" id="labor7"/></td>
<td><input type="text" id="free7" value="" name="freelabor"/></td>
<td><input type="text" id="vocation7" value="" name="voc"/></td>
<td><input type="text" id="tokens7" value="" name="token"/></td>
<td><input type="text" id="online7" value="" name="online"/></td>
<td><input type="text" id="sub7" value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name8" value="Martha" name="charname"/></td>
<td><input type="text" id="labor8"/></td>
<td><input type="text" id="free8" value="" name="freelabor"/></td>
<td><input type="text" id="vocation8" value="" name="voc"/></td>
<td><input type="text" id="tokens8" value="" name="token"/></td>
<td><input type="text" id="online8" value="" name="online"/></td>
<td><input type="text" id="sub8" value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name9" value="Octavia" name="charname"/></td>
<td><input type="text" id="labor9"/></td>
<td><input type="text" id="free9" value="" name="freelabor"/></td>
<td><input type="text" id="vocation9"value="" name="voc"/></td>
<td><input type="text" id="tokens9"value="" name="token"/></td>
<td><input type="text" id="online9"value="" name="online"/></td>
<td><input type="text" id="sub9"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name10" value="Samantha" name="charname"/></td>
<td><input type="text" id="labor10"/></td>
<td><input type="text" id="free10"value="" name="freelabor"/></td>
<td><input type="text" id="vocation10"value="" name="voc"/></td>
<td><input type="text" id="tokens10"value="" name="token"/></td>
<td><input type="text" id="online10"value="" name="online"/></td>
<td><input type="text" id="sub10"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name11" value="Joker" name="charname"/></td>
<td><input type="text" id="labor11"/></td>
<td><input type="text" id="free11"value="" name="freelabor"/></td>
<td><input type="text" id="vocation11"value="" name="voc"/></td>
<td><input type="text" id="tokens11"value="" name="token"/></td>
<td><input type="text" id="online11"value="" name="online"/></td>
<td><input type="text" id="sub11"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name12" value="GoodKush" name="charname"/></td>
<td><input type="text" id="labor12"/></td>
<td><input type="text" id="free12"value="" name="freelabor"/></td>
<td><input type="text" id="vocation12"value="" name="voc"/></td>
<td><input type="text" id="tokens12"value="" name="token"/></td>
<td><input type="text" id="online12"value="" name="online"/></td>
<td><input type="text" id="sub12"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name13" value="Minerguy" name="charname"/></td>
<td><input type="text" id="labor13"/></td>
<td><input type="text" id="free13"value="" name="freelabor"/></td>
<td><input type="text" id="vocation13"value="" name="voc"/></td>
<td><input type="text" id="tokens13"value="" name="token"/></td>
<td><input type="text" id="online13"value="" name="online"/></td>
<td><input type="text" id="sub13"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name14" value="Lunareclipse" name="charname"/></td>
<td><input type="text" id="labor14"/></td>
<td><input type="text" id="free14"value="" name="freelabor"/></td>
<td><input type="text" id="vocation14"value="" name="voc"/></td>
<td><input type="text" id="tokens14"value="" name="token"/></td>
<td><input type="text" id="online14"value="" name="online"/></td>
<td><input type="text" id="sub14"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name15" value="Peacemaker" name="charname"/></td>
<td><input type="text" id="labor15"/></td>
<td><input type="text" id="free15"value="" name="freelabor"/></td>
<td><input type="text" id="vocation15"value="" name="voc"/></td>
<td><input type="text" id="tokens15"value="" name="token"/></td>
<td><input type="text" id="online15"value="" name="online"/></td>
<td><input type="text" id="sub15"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name16" value="Minergirl" name="charname"/></td>
<td><input type="text" id="labor16"/></td>
<td><input type="text" id="free16"value="" name="freelabor"/></td>
<td><input type="text" id="vocation16"value="" name="voc"/></td>
<td><input type="text" id="tokens16"value="" name="token"/></td>
<td><input type="text" id="online16"value="" name="online"/></td>
<td><input type="text" id="sub16"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name17" value="Commander" name="charname"/></td>
<td><input type="text" id="labor17"/></td>
<td><input type="text" id="free17"value="" name="freelabor"/></td>
<td><input type="text" id="vocation17"value="" name="voc"/></td>
<td><input type="text" id="tokens17"value="" name="token"/></td>
<td><input type="text" id="online17"value="" name="online"/></td>
<td><input type="text" id="sub17"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name18" value="Minerguyy" name="charname"/></td>
<td><input type="text" id="labor18"/></td>
<td><input type="text" id="free18"value="" name="freelabor"/></td>
<td><input type="text" id="vocation18"value="" name="voc"/></td>
<td><input type="text" id="tokens18"value="" name="token"/></td>
<td><input type="text" id="online18"value="" name="online"/></td>
<td><input type="text" id="sub18"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name19" value="Odoo" name="charname"/></td>
<td><input type="text" id="labor19"/></td>
<td><input type="text" id="free19"value="" name="freelabor"/></td>
<td><input type="text" id="vocation19"value="" name="voc"/></td>
<td><input type="text" id="tokens19"value="" name="token"/></td>
<td><input type="text" id="online19"value="" name="online"/></td>
<td><input type="text" id="sub19"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name20" value="Pheobe" name="charname"/></td>
<td><input type="text" id="labor20"/></td>
<td><input type="text" id="free20"value="" name="freelabor"/></td>
<td><input type="text" id="vocation20"value="" name="voc"/></td>
<td><input type="text" id="tokens20"value="" name="token"/></td>
<td><input type="text" id="online20"value="" name="online"/></td>
<td><input type="text" id="sub20"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name21" value="Spacewalker" name="charname"/></td>
<td><input type="text" id="labor21"/></td>
<td><input type="text" id="free21"value="" name="freelabor"/></td>
<td><input type="text" id="vocation21"value="" name="voc"/></td>
<td><input type="text" id="tokens21"value="" name="token"/></td>
<td><input type="text" id="online21"value="" name="online"/></td>
<td><input type="text" id="sub21"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name22" value="Drunkflowers" name="charname"/></td>
<td><input type="text" id="labor22"/></td>
<td><input type="text" id="free22"value="" name="freelabor"/></td>
<td><input type="text" id="vocation22"value="" name="voc"/></td>
<td><input type="text" id="tokens22"value="" name="token"/></td>
<td><input type="text" id="online22"value="" name="online"/></td>
<td><input type="text" id="sub22"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name23" value="Joker" name="charname"/></td>
<td><input type="text" id="labor23"/></td>
<td><input type="text" id="free23"value="" name="freelabor"/></td>
<td><input type="text" id="vocation23"value="" name="voc"/></td>
<td><input type="text" id="tokens23"value="" name="token"/></td>
<td><input type="text" id="online23"value="" name="online"/></td>
<td><input type="text" id="sub23"value="" name="sub"/></td>
</tr>
<tr>
<td><input type="text" id="name24" value="Badkush" name="charname"/></td>
<td><input type="text" id="labor24"/></td>
<td><input type="text" id="free24"value="" name="freelabor"/></td>
<td><input type="text" id="vocation24"value="" name="voc"/></td>
<td><input type="text" id="tokens24"value="" name="token"/></td>
<td><input type="text" id="online24"value="" name="online"/></td>
<td><input type="text" id="sub24"value="" name="sub"/></td>
</tr>
</table><!-- End Table -->
</form><!-- End Form -->
JavaScript
<!-- Script to run Labor calculations. -->
<script type="text/javascript">
function increment(){
for(var i=1; i<=24; i++){
var id = "labor"+i;
var points = document.getElementById(id).value;
if(points>=4990){
document.getElementById(id).value=5000;
}
else{
document.getElementById(id).value=Number(document.getElementById(id).value)+10;
}
}
}
increment()
</script>
<!-- Script to run Time Stamp at top of page. -->
<script type="text/javascript">
var date = new Date();
var n = date.toDateString();
var time = date.toLocaleTimeString();
document.getElementById('time').innerHTML = n + ' ' + time;
</script>
最佳答案
您还没有真正说出您的问题是什么,所以我将向您介绍 for 循环的魔力。
与其将同一行写 24 次,不如将这段代码写一次!
for(var i=1; i<=24; i++){
var id = "labor" + i;
var n = Number(document.getElementById(id).innerHTML);
n += 10;
document.getElementById(id).innerHTML = n;
}
说明:
for 循环在开头创建一个变量 i
,并将其设置为 1。对于第一个循环,我们需要文本“labor1”,因此创建另一个变量 id,它是“劳动”无论我是什么(现在,1)。
然后执行您的 document.getElementById("labor1").value
操作,但由于变量 id 已经是“labor1”,我们可以在循环中替换它。 += 10 位只是“将此值加 10”的简写。
然后,for 循环检查 i 是否小于 24(确实如此),并且 i++ 位将 i 加 1(所以现在是 2)。然后循环重复相同的代码 23 次,直到 i > 24。
如果您足够聪明,您也可以以编程方式创建该页面,因为看起来您的许多元素都在那里重复。
关于javascript - 离线 Javascript Ran 自动更新计算器和电子表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36881141/
我有一个 html 格式的表单: 我需要得到 JavaScript在value input 字段执行,但只能通过表单的 submit .原因是页面是一个模板所以我不控制它(不能有
我管理的论坛是托管软件,因此我无法访问源代码,我只能向页面添加 JavaScript 来实现我需要完成的任务。 我正在尝试用超链接替换所有页面上某些文本关键字的第一个实例。我还根据国家/地区代码对这些
我正在使用 JS 打开新页面并将 HTML 代码写入其中,但是当我尝试使用 document.write() 在新页面中编写 JS 时功能不起作用。显然,一旦看到 ,主 JS 就会关闭。用于即将打开的
提问不是为了解决问题,提问是为了更好地理解系统 专家!我知道每当你将 javascript 代码输入 javascript 引擎时,它会立即由 javascript 引擎执行。由于没有看过Engi
我在一个文件夹中有两个 javascript 文件。我想将一个变量的 javascript 文件传递到另一个。我应该使用什么程序? 最佳答案 window.postMessage用于跨文档消息。使
我有一个练习,我需要输入两个输入并检查它们是否都等于一个。 如果是 console.log 正则 console.log false 我试过这样的事情: function isPositive(fir
我正在做一个Web应用程序,计划允许其他网站(客户端)在其页面上嵌入以下javascript: 我的网络应用程序位于 http://example.org 。 我不能假设客户端网站的页面有 JQue
目前我正在使用三个外部 JS 文件。 我喜欢将所有三个 JS 文件合而为一。 尽一切可能。我创建 aio.js 并在 aio.js 中 src="https://code.jquery.com/
我有例如像这样的数组: var myArray = []; var item1 = { start: '08:00', end: '09:30' } var item2 = {
所以我正在制作一个 Chrome 扩展,它使用我制作的一些 TamperMonkey 脚本。我想要一个“主”javascript 文件,您可以在其中包含并执行其他脚本。我很擅长使用以下行将其他 jav
我有 A、B html 和 A、B javascript 文件。 并且,如何将 A JavaScript 中使用的全局变量直接移动到 B JavaScript 中? 示例 JavaScript) va
我需要将以下整个代码放入名为 activate.js 的 JavaScript 中。你能告诉我怎么做吗? var int = new int({ seconds: 30, mark
我已经为我的 .net Web 应用程序创建了母版页 EXAMPLE1.Master。他们的 I 将值存储在 JavaScript 变量中。我想在另一个 JS 文件中检索该变量。 示例1.大师:-
是否有任何库可以用来转换这样的代码: function () { var a = 1; } 像这样的代码: function () { var a = 1; } 在我的浏览器中。因为我在 Gi
我收到语法缺失 ) 错误 $(document).ready(function changeText() { var p = document.getElementById('bidp
我正在制作进度条。它有一个标签。我想调整某个脚本完成的标签。在找到可能的解决方案的一些答案后,我想出了以下脚本。第一个启动并按预期工作。然而,第二个却没有。它出什么问题了?代码如下: HTML:
这里有一个很简单的问题,我简单的头脑无法回答:为什么我在外部库中加载时,下面的匿名和onload函数没有运行?我错过了一些非常非常基本的东西。 Library.js 只有一行:console.log(
我知道 javascript 是一种客户端语言,但如果实际代码中嵌入的 javascript 代码以某种方式与在控制台上运行的代码不同,我会尝试找到答案。让我用一个例子来解释它: 我想创建一个像 Mi
我如何将这个内联 javascript 更改为 Unobtrusive JavaScript? 谢谢! 感谢您的回答,但它不起作用。我的代码是: PHP js文件 document.getElem
我正在寻找将简单的 JavaScript 对象“转储”到动态生成的 JavaScript 源代码中的最优雅的方法。 目的:假设我们有 node.js 服务器生成 HTML。我们在服务器端有一个对象x。
我是一名优秀的程序员,十分优秀!