- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 JavaScript 的新手。我正在尝试创建一个随机破解配对生成器,将名称与提示进行匹配。
添加更多列表后,它停止工作 - 没有提示或名称出现,我无法发现错误。
<!doctype html>
<html>
<head><title>Crack Pairings Matchup Generator</title>
<script language="JavaScript">
function d(num, sides)
{
var result = 0;
for(var i=0; i<num; i++)
{
result += 1 + Math.floor(Math.random() * sides);
}
return result;
}
function init_table()
{
return [table_1, table_2, table_3, table_4, table_5, table_6][d(1, 6) - 1]();
}
function table_1()
{
var chars =
[
"",
"Jacob",
"Garrus",
"Liara",
"Grunt or DUCK!Grunt",
"Subject Zero",
"Shepard or Both Shepards",
"Saren",
"Kasumi",
"Miranda",
"Mordin",
"Samara",
"Thane",
"Zaeed",
"Collector General",
"Harbinger",
"Oriana",
"Kasumi",
"Tela Vasir" ];
var choice = d(1, 20);
if(choice <= 18)
{
return chars[choice];
}
else if(choice ==19)
{
return "(" + table_1() + " + " + table_1() + ")";
}
else
{
return "(Gender-switched " + table_1() + ")";
}
}
function table_2()
{
var chars =
[
"",
"Nihlus",
"Legion",
"Morinth",
"Armando Bailey",
"The Illusive Man",
"EDI",
"Kelly Chambers",
"Kal'Reegar",
"Urz",
"Aria T'Loak",
"Kenneth Donnelly",
"Gabriella Daniels",
"Matriarch Aethyta",
"Doctor Gavin Archer",
"Vigil",
"Sovereign",
"Conrad Verner" ];
var choice = d(1, 20);
if(choice <= 17)
{
return chars[choice];
}
else if(choice ==18)
{
return "(" + table_2() + " + " + table_2() + ")";
}
else if(choice == 19)
{
return "(" + init_table() + " + " + init_table() + ")";
}
else
{
return "(Gender-switched " + table_2() + ")";
}
}
function table_3()
{
var chars =
[
"",
"Ashley Williams",
"Kaidan Alenko",
"Urdnot Wrex",
"Udina",
"Rachni Queen",
"Anderson",
"Keeper(s)",
"Tank Bred Krogan",
"Feron",
"Matriarch Benezia",
"Saren Arterius",
"Human reaper",
"James Vega",
"Krogan Princess",
"Kai Leng",
"Strictly!Book Character e.g. Kahlee Sanders/ Skarr/ Edan Had'dah",
"Shepard VI"];
var choice = d(1, 20);
if(choice <= 17)
{
return chars[choice];
}
else if(choice ==19)
{
return "(" + table_3() + " + " + table_3() + ")";
}
else if(choice == 18)
{
return "(" + init_table() + " + " + init_table() + ")";
}
else
{
return "(Gender-switched " + table_3() + ")";
}
}
function table_4()
{
var chars =
[
"",
"Volus",
"Ambassador Calyn",
"Vorcha",
"Archangle's Squad Mate(s)",
"Mad Prophet",
"Executor Pallin",
"Mechs - LOKI/ FENRIS/ YMIR",
"Gardner",
"Sha'ira",
"Lorik Qui'in",
"Captain Kirrahe",
"Garrus's Flexible Lady-friend",
"Septimus",
"MAKO",
"A clone or AU version of themselves/ itself",
"Citadel Souvenir(s) - fish and/or model ships",
"Any gunship/ starship"];
var choice = d(1, 20);
if(choice <= 17)
{
return chars[choice];
}
else if(choice ==19)
{
return "(" + table_4() + " + " + table_4() + ")";
}
else if(choice == 18)
{
return "(" + init_table() + " + " + init_table() + ")";
}
else
{
return "(Gender-switched " + table_4() + ")";
}
}
function table_5()
{
var chars =
[
"",
"Avina",
"Collectors",
"Thresher Maw",
"Female Alien(s) not appearing in ME2",
"Dr. Amanda Kenson",
"Desolas",
"Emily Wong",
"Anyone/ Everyone in C-Sec",
"Corporal Toombs",
"Legendary or Historical Character e.g. Shiagur",
"Bachelor Party from Eternity",
"Anyone/ Everyone in the Afterlife Club",
"Friendzoned Turian and his Quarian Friend",
"Calibrations",
"Shiala",
"Mercenaries (Blood Pack/ Blue Suns/ Eclipse/ Grim Skulls/ Tiburón Rojo",
"Aleena"];
var choice = d(1, 20);
if(choice <= 17)
{
return chars[choice];
}
else if(choice ==19)
{
return "(" + table_5() + " + " + table_5() + ")";
}
else if(choice == 18)
{
return "(" + init_table() + " + " + init_table() + ")";
}
else
{
return "(Gender-switched " + table_5() + ")";
}
}
function table_6()
{
var chars =
[
"",
"Khalisah al-Jilani",
"Kolyat",
"Irikah",
"Patriarch",
"Hannah Shepard",
"Admiral Hackett",
"Gianna Parasini",
"Jessie",
"The entire Reaper Fleet",
"The Council / any Council member",
"Chakwas",
"Joker",
"Space Hamster",
"Veetor'Nara",
"Vido Santiago",
"Blasto"];
var choice = d(1, 20);
if(choice <= 16)
{
return chars[choice];
}
else if(choice ==17)
{
return "(" + table_5() + " + " + table_5() + ")";
}
else if(choice == 18)
{
return "(" + table_1() + " + " + table_2() + " + " + table_3() + " + " + table_4() + "+ " + table_5() + ")";
}
else if(choice == 19)
{
return "(" + init_table() + " + " + init_table() + ")";
}
else
{
return "(Gender-switched " + table_6() + ")";
}
}
function roll()
{
document.getElementById("results").innerHTML = init_table() + " + " + init_table();
}
function spd()
{
var chars=
[
"Unrequited love /Jealousy",
“Chuck Norris facts in Soviet Russia”,
"Threesome/ More-some with your character(s) of choice",
"Alternate Universe/ Crossover",
"Drunkenness/ Mass Drunkenness/ the Morning After",
"Snowed in/ Enclosed Spaces ",
“Trapped on a Desert Island / Grounded”,
"Biotics/ Very Roughly",
"In the Afterlife",
"Masturbation/ Caught masturbating ",
"Mind Control/ Indoctrination",
"Aliens Made Them Do It",
"Love/ hate relationship or Hate-sex",
"Virginity/ Beware the Nice Ones",
"Pregnancy (use male pregnancy if needed)",
“Forced Impregnation e.g. via implantation of parasitical babies”,
"Noncon or Dubcon",
"French maid costume/ Leather/ other clothing kink",
"BDSM/ Spanking/ Sex as Rite-of-Passage",
"Weapon-play e.g. Gunplay or Knife play",
"Pegging/ Frot/ Grinding",
"Doing it in Public/ It’s always the Quiet Ones",
"High school setting/ Everyone as Children",
"Character(s) as Vampire/ Werewolf/ Space Zombies/ Husk/ Any form of Undead",
"Everyone is a furry version of themselves/ As Cat boys & Girls",
"Species Swap/ Body Swap",
"Hurt/Comfort",
"I Have No Mouth And I Must Scream/ Right Through their Pants or Armour",
"Someone is unconscious, dead or dying/ Johnny Got His Gun",
"Porn Starring in a Video or Magazine",
"Allergic or Hallucinatory Reaction/ It’s Personal",
"Bedtime Story/ Noodle Incident ",
"In the Midst of Battle/ Abandoned Warehouse ",
"Part of a Bargain/ This is Revenge",
"U.S.T/ Morality",
"Someone has or gains an STD",
"With Mass Effect Memes/ Candle Jack kidnaps the reapers and saves the Uni",
"Adoption or Swearing of Brotherhood/ Sisterhood",
"Strip Dance/ Lap dance/ Stealing Christmas",
"Mistaken identity or gender/ Stolen Identity",
"Murder/ Contract to Kill",
"Tentacles/ Too Kinky to Torture",
"Snuff/ Sexbot/ Kick the Dog",
"Blood play/ Torture/ Orgasm Denial",
"Sports/ Sparring session/ non-lethal Shootout",
"Trollfic/ Stylistic Suck ",
"Mental Illness/ Emotional Trauma/ Brain Bleach",
"69/ Autofellatio",
"Hidden or Unknown Identity/ Gender"
"While Shepard is Driving/ Corruption",
"Someone writes Fan fiction/ Oh Crap There Are Fanfics of Us",
"Virtual sex e.g. by Phone or Hologram(s)",
"Aphrodisiac/ Losing control",
"Someone is sick or injured/ Hot Nurse",
"Body paint/ It’s an Art",
"Direct Nerve Stimulation/ The Hunter Becomes The Hunted",
"Scat (or scat singing if you’re not up to it)",
"Blind Date or First Date",
"Hacked Implants / Suit(s)/ Armour",
"Carnage fetish / Pyrophilia/ Explosions turn me on",
"Pranks/ Prank Date/ OMG what did I just eat",
"Starting a Relationship to get back at someone",
"While thinking of someone else",
"Planking/ LOLCATS",
"Wedding/ Shotgun wedding ",
"As a Bet/ Meet Cute ",
"Infidelity/ Foot Fetish",
"Memory Loss",
"Meeting the Parents/ All work and no play makes Jack a dull boy",
"Undercover Mission/ Undercover as Lovers, slave/master or Family (Nanny and pets included)",
"Love Triangle / Dodecagon (Imaginary or Not)",
"Secret Relationship/ Relationship Denial",
"Allergic to Love/ Twice Shy/ Love Shy",
"Anguished Declaration of Love",
"Breakup/ Better As Friends (With or Without Makeup)",
"Interruption of: Romance, Sex or Suicide",
"Clueless Magnet/ Eternity ",
"Dancing Together/ Videogame",
"Dying Declaration of Love/ Mistaken for Dying",
"Star Crossed Lovers/ Total Party Kill/ Death by Snu Snu",
"Friends with Benefits/ Gentle Pretence",
"Glomping/ Cuddle Monster",
"Tea Party/ Birthday Party",
"Growing Old together/ Sickeningly Sweethearts",
"Happiness in Slavery/ Bought and Sold as a Slave",
"Home world Visit/ Fandom Bicycle",
"If I Can't Have You — Then No One Else Will!",
"Incompatible Sexual Orientation or Species Orientation (With or Without Emotional Attraction)",
"ON YOUR SIX/ Flank watch/ Loveable Meat shield",
"Love at first: sight/ fight/ voice call or recording",
"Long Distance Relationship/ Force Feeding",
"Love makes you OOC/ Character Derailment",
"Political Reasons/ Conspiracy",
“X times they don’t and the one time they do”,
“Kissing/ New Years Kiss/ Kissing it Better”,
"Collar / Leash/ Blindfold",
"Dying of Embarrassment (Literally or Not)",
"Voyeurism/ I like to watch you sleep/ Ceiling Cat",
"Amusement Park/ Zoo/ Circus ",
"Health Check-up/ Health Check-up of the Unmentionables ",
"All involved parties are injured and in Med bay",
"Shore leave/ Holiday celebrations",
"The Musical/ Songfic ",
“Audio Erotica/ Foreign Language”,
“Serenade Your Lover / Bawdy Song”,
“Singing Telegram/ Single Chance”,
"Purple Prose/ Love Poetry",
"Do a Barrel Roll/ Fairy Godparent",
"Pirate-speak/ LOLCAT speak/ Yoda Speak/ 1337 Speak",
"Comparing Scars/ Tales from the Past",
"Asphyxiation (Erotic or Not)",
"My Job Comes First/ Fridge Logic",
"Rescue Romance/ Bad Romance",
"Friendly Fire/ Accident/ Shipwreck",
"Innuendo/ Double Entendre",
"Sexual Predator/ Stalker/ Stalker with a Test Tube for your DNA",
"Cooking/ Culinary disaster",
"Their Parents or Siblings Get Together",
"Back from the Dead (I got better) / Back from the Dead with the Power of LOVE",
"Against All Odds/ Nobody Thinks It Will Work",
“Playing Chicken/ Playing Dead/ Playing Hard To Get",
"I will do ANYTHING for you/ Romantic Hyperbole",
"Pirate/ Ninja/ Cyborg/ Hide and Seek",
"Kidnapped (By somebody inside or outside of the pairing)",
"You’re just a Toy/ the Cake was a Lie",
"Better Than Sex/ Mary Sueism ",
"Breaking Furniture/ Someone is a Screamer/ Battle Cry",
"Compensating for Something/ Why so Serious?",
"Big or Exotic Equipment/ Help! I'm being repressed",
"Ambiguous in Whether Sex ensued/ G-rated Sex",
"This Isn't What It Looks like",
"Sexism: Fear of Cooties/ Boys are stupid throw rocks at them",
"Sexual Condition e.g. Paraphilias/ Hypersexuality/ Priapism/ Sexsomnia",
"I'm very sensitive/ I didn’t mean to hurt you ",
"Someone Cleans Up Nicely/ Putting On Makeup ",
"Imprisonment/ Separated by the wall",
"Train Station Goodbye/ One Last Fling",
"Matchmaker/ Sarcasm/ Dear Sister ",
"I can Wait/ Worth the Wait/ Missing you",
"NARM/ Smaltz/ Heroic Blue Screen of Death",
"Emo/ Goth/ Preps ",
"No John, you are the demons/ Big Loud Scream/ KHAAAN",
"Courtroom Blues/ Chewbacca Defense”,
“Funeral/ Funeral Site/ My Heart Will Go On",
"Divorce: fighting for custody/ All just a Dream (or not)",
"Everyone is Gay or Bi/ Awkward or Fail Sex ",
"Beautiful All Along/ Killing with ugliness",
"Monty Python/ Killer Rabbit/ No one expects the Spanish Inquisition",
"Pokemon/ the A-Team/ Doctor Who",
"Poking/ Tickling/ Massage",
"THIS IS REVENGE/ S P A R T A",
"Rules of the Internet/ Anything worth doing is worth overdoing",
"As a Poem/ Constrained Writing e.g. Lipogram or Acrostics",
“Kid fic/ Delivery Stork/ Mutant Babies/ Dead baby comedy”,
“Fluff/ Cuteness Overload”,
“Fix or Wreck Fic/ Nice Job Breaking It, Hero/ It Got Worse”,
“Creative usage/ Refuge in Audacity/ More Dakka”,
“Shower/ Spa/ Onsen”,
“Fairy Tale/ Mind Screw”,
“Secret Diary/ Memoir/ Beyond the Impossible”,
“Misunderstood/ Poor Communication Kills”,
“Salvation/ Mentor/ Berserk Button”,
“The Wind Changed/ Old Wife’s Tale”,
“The fantastical adventures of – “,
“Innocence/ Accidental Pervert”,
“Big Lipped Alligator Moment/ Only Sane Man/ Redshirts”,
“Waiting for Godot/ Shakespeare”,
“Abortion”,
“Time Travel/ Time Loop”,
“Precision F Strike/ Blame/ Momma’s Boy or Girl”,
“Retro Glory/ Remembrance”,
“Apologize/ Naked Apologizing”,
“Freedom/ Pride/ Betrayal”,
“Emotionless/ Emotional Vampire”,
“Manipulative Bastard/ Master of Illusion”,
“Bluff/ Bavarian Fire Drill”,
“Sexual Harassment/ Sexual Harassment played as Comedy (e.g. two fat cocks + oil)”,
“Awkwardness/ Hand stuck while-Pick pocketing”,
“Cannibalism/ Food Fetish/ I eat babies”,
“Air quotes/ Hypocrite/ Role-playing”,
“Argument/ It’s MINE and you can’t have it”,
“Sacrifice/ Sacrificial Sock”,
“Physics/ Schroeder's cat”,
“Flopsy/ the Butler Did It”,
“Hurry up, it’s urgent/ Emergency/ Just in time”,
"Translator Glitch/ Dirty Hungarian Phrasebook",
"Lampshade Hanging/ Epileptic Trees/ Fourth Wall”,
"Verbose/ Shut Up Kiss",
"Spanish Prisoner/ Landmark Sale ",
"Kansas City Shuffle/ Violin Scam”,
"The Rainmaker/ the Sting",
"Cultural Shock/ Misunderstanding"];
var choice = d(1, 93);
if(choice <= 93)
{
return chars[choice];
}
else
{
return spd() + " + " + spd();
}
}
function show_spd()
{
document.getElementById("spd").innerHTML = spd();
}
</script>
</head>
<body>
<form>
<input type="button" value="Roll" onclick="roll();"></input>
<input type="button" value="Plot Device" onclick="show_spd();"></input>
</form>
<p><div id="results"></div></p>
<p><div id="spd"></div></p>
</body>
</html>
最佳答案
某些值使用“漂亮引号”而不是 "
例如:
“Chuck Norris facts in Soviet Russia”,
并且数组值后面没有,
:
"Hidden or Unknown Identity/ Gender"
关于javascript - 需要帮助修复 "random crack pairings matchup generator"的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6290672/
我有这个问题: 我们声称对 float 使用相等测试是不安全的,因为算术运算会引入舍入错误,这意味着两个应该相等的数字实际上并不相等。 对于这个程序,您应该选择一个数字 N,并编写一个程序来显示 1
为什么这个脚本的输出是 5 而不是 8 ? 我认为 -- 意味着 -1 两次。 var x = 0; var y = 10; while ( x
我现在可以从 cmd 窗口中执行的 FFmpeg 过程中读取最后一行。 使用脚本主机模型对象引用此源。 Private Sub Command1_Click() Dim oExec
使用 vlookup,当匹配发生时,我想从匹配发生的同一行显示工作表 2 中 C 列的值。我想出的公式从 C 列表 2 中获取值,但它从公式粘贴在表 3 上的行中获取,而不是从匹配发生的位置获取。 这
我在破译 WCF 跟踪文件时遇到了问题,我希望有人能帮助我确定管道中的哪个位置发生了延迟。 “Processing Message XX”的跟踪如下所示,在事件边界和传输到“Process Actio
我有四个表,USER、CONTACT、CONACT_TYPE 和 USER_CONTACT USER_CONTACT 存储用户具有填充虚拟数据的表的所有联系人如下 用户表 USER_ID(int)|
以下有什么作用? public static function find_by_sql($sql="") { global $database; $result_set = $data
我正在解决 JavaBat 问题并且对我的逻辑感到困惑。 这是任务: Given a day of the week encoded as 0=Sun, 1=Mon, 2=Tue, ...6=Sat,
我正在研究一些 Scala 代码,发现这种方法让我感到困惑。在匹配语句中,sublist@ 是什么?构造?它包含什么样的值(value)?当我打印它时,它与 tail 没有区别,但如果我用尾部替换它,
我正在使用以下代码自行缩放图像。代码很好,图像缩放也没有问题。 UIImage *originImg = img; size = newSize; if (originImg.size.width >
Instruments 无法在我的 iPad 和 iPhone 上启动。两者都已正确配置,我可以毫无问题地从 xcode 调试它们上的代码,但 Instruments 无法启动。 我听到的只是一声嘟嘟
我想用 iPhone 的 NSRegularExpression 类解析此文本: Uploaded652.81 GB 用于摘录上传和652.81文本。 最佳答案 虽然我确实认为 xml 解析器更适合解
我找到了 solution在 Stackoverflow 上,根据过滤器显示 HTML“li”元素(请参阅附件)。本质上基于 HTML 元素中定义的 css 类,它填充您可以从中选择的下拉列表。 我想
这是一个简单的问题,但我是在 SQL 2005 中形成 XML 的新手,但是用于形成如下所示表中的 XML 的最佳 FOR XML SQL 语句是什么? Column1 Column2 -
我在 www.enigmafest.com 有一个网站!您可以尝试打开它!我面临的问题是,在预加载器完成后,主页会出现,但其他菜单仍然需要很长时间才能加载,而且声音也至少需要 5 分钟! :( 我怎样
好吧,我正在尝试用 Haskell 来理解 IO,我想我应该编写一个处理网页的简短小应用程序来完成它。我被绊倒的代码片段是(向 bobince 表示歉意,但公平地说,我并不想在这里解析 HTML,只是
如何使用背景页面来突出显示网站上的某个关键字,无论网站是什么(谷歌浏览器扩展)?没有弹出窗口或任何东西,它只是在某人正在查看的网站上编辑关键字。我以前见过这样的,就是不明白怎么做!谢谢你的帮助。 最佳
我是 Javascript 新手,需要一些帮助。 先看图片: . 积分预测器应用程序。 基本上当用户通过单选按钮选择获胜团队时它应该在积分栏中为获胜队添加 10 分,并且并根据得分高的球队自动对表格进
这是我的情况 - 我要发送一份时事通讯,我试图做的是,当用户单击电子邮件中的链接时,它会重定向到我的网页,然后会弹出一个灯箱,显示视频。我无法在页面加载时触发灯箱,因为您可以在查看灯箱之前转到同一页面
我有这个代码。 ¿Cuanto es ? Ir 我想获取用户输入的“验证码”值。我尝试这个但行不通。有什么帮助吗? var campo = d
我是一名优秀的程序员,十分优秀!