例如:
var a = " ";
var b = "";
b = a * 8;
alert(b +"this far to the right");
注意:我不想使用 ,因为 ActiveX FSO 将用于写入文本文件而不是 html 文件。所以它只需要是空格:
我正在努力实现的更详尽的细节:
我试图让 ActiveX FSO 在提交表单后从 HTML 订单表单写入文本文件,然后继续将订单写入文本文件。文本文件需要采用某种格式,Microsoft Dynamics 才能接受作为进口销售。
如下所示:客户代码 空间 项目代码 空间 数量 空间:
import.txt减去带有槽的字符串长度 = 要填充的剩余空格。
C242299A *4 white spaces* 2890 *12 white spaces* 20 *6 white spaces*
[------------][----------------][--------]
12 char slots 16 char slots 8 char slots
write.js将创建这个 import.txt 文件(这是我需要帮助的部分)
var customercode = document.getElementById("customercode").value;
var itemcode = document.getElementById("itemcode").value;
var quantity = document.getElementById("quantity").value;
var fso = new ActiveXObject("Scripting.FileSystemObject");
var s = fso.OpenTextFile(path+"import.txt",8,true,0);
//customer code string length must be measured to determine remaining spaces
//to fill before item code can be entered.
//you only have 12 character slots before the next string "item code" can be entered
var remainingSpaces = "";
remainingSpaces = 12 - customercode.length;
spacefill1 = " " * remainingspaces;
remainingSpaces = 16 - itemcode.length;
spacefill2 = " " * remainingSpaces;
remainingSpaces = 8 - quantity.length;
spacefill3 = " " * remainingSpaces;
s.WriteLine(customercode+spacefill1+itemcode+spacefill2+quantity+spacefill3);
假设创建一个如下所示的文本文件:
C242299A 2890 20
然后将其导入 Microsoft Dynamics。
但问题是它不会乘以将空格视为 0/null 的空格 :( 欢迎使用 Jquery 解决方案。