2

我正在使用自动填充插件https://addons.mozilla.org/pl/firefox/addon/autofill-262804/,我想用定义的随机文本填充我的文本字段。例如,我想/* City */ city|town用定义之一填充字段:London, Paris, Amsterdam

但我不知道该怎么做。

开发商说:

变量——使用特殊变量输出随机单词(文本微调器)、数字和字母数字字符

所以这是可能的。

请帮我。

编辑

或者您是否知道使用定义的随机文本自动填充字段的任何插件/方法

4

2 回答 2

1

尽管对您的问题给予了赏金,但我还是设法找到了解决方案 - 我也很难在 Google Groups 页面和开发人员的网站中找到它,直到我找到他的“其他”页面,其中指出:

展开变量 – 如果选中此框,{...} 将替换为变量的输出。目前可以使用三种类型的变量:

{word1|word2|...} – This variable acts like a text spinner, randomly outputting one word from a list of words that you specify. Example: to output "house", "condo", "apartment", or "flat", you would enter {house|condo|apartment|flat}
{#} or {#number} – This variable outputs a random number. You can specify the number of digits after # ({#1} is equivalent to {#}). Example: to generate a random telephone number, you would enter ({#3}) {#3}-{#4}
{$} or {$number} – This variable outputs a random alphanumeric string. You can specify the number of characters after $ ({$1} is equivalent to {$}). Example: to generate a 16-character dummy text string, you would enter {$16}

因此,例如,在为您的元素自动填充框的值中,放置:

{$6}@{$6}.com

将插入一个由 6 个随机字母组成的电子邮件地址,然后是一个 @,然后是六个随机字母,最后是一个 .com。

于 2013-08-19T04:24:40.610 回答
0

自动填充的值应该是:

    {London|Paris|Amsterdam}
于 2013-08-25T22:38:06.247 回答