今天我们来做一个随机选择器的小demo,(选择困难症的福音),能将你纠结的事放到这里进行随机选择。
直接来看效果:
首先输入吃饭,睡觉,写代码
然后回车:最终选中了睡觉,但是现在不睡觉哈哈哈。
来看代码实现:
首先是html部分:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Random Choice Picker</title>
</head>
<body>
<div class="container">
<h3>Enter all of the choices divided by a comma (',').
<br> Press enter when you're done</h3>
<!-- 输入框 -->
<textarea placeholder="Enter choices here..." id="textarea"></textarea&