加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
input.htm 2.71 KB
一键复制 编辑 原始数据 按行查看 历史
Ecava_IGX 提交于 2022-08-16 14:31 . 上传文件
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>IntegraXor Inputs</title>
<link rel="stylesheet" type="text/css" href="system/styles/igrX.css" />
<link rel="stylesheet" type="text/css" href="styles/custome.css" />
</head>
<body>
<h2></h2>
<fieldset class="ui-widget-content ">
<legend>Name</legend>
First Name: <input id="input_name_first" name="input_name_first" type="text" value="" placeholder="Enter your first name"/>
<br/>
<br/>
Last Name: <input id="input_name_last" name="input_name_last" type="text" value="" placeholder="Enter your last name"/>
</fieldset>
<fieldset class="ui-widget-content ">
<legend>Motor speed</legend>
<select name="input_speed">
<option value="1">Fast</option>
<option value="2" selected>Medium</option>
<option value="3">Slow</option>
</select>
</fieldset>
<fieldset class="ui-widget-content ">
<legend>Control Mode</legend>
<input id="auto" name="input_control_mode" type="radio" value="0" />
<label for="auto">Auto</label>
<input id="manual" name="input_control_mode" type="radio" value="1" checked/>
<label for="manual">Manual</label>
</fieldset>
<fieldset class="ui-widget-content ">
<legend>Recepi</legend>
<input id="Sugar" name="input_recepi" type="checkbox" value="0"/>
<label for="Sugar">Sugar</label>
<input id="Vanila" name="input_recepi" type="checkbox" value="1"/>
<label for="Vanila">Vanila</label>
<input id="Chocolate" name="input_recepi" type="checkbox" value="2" checked/>
<label for="Chocolate">Chocolate</label>
<input id="Strawberry" name="input_recepi" type="checkbox" value="3"/>
<label for="Strawberry">Strawberry</label>
</fieldset>
<fieldset class="ui-widget-content ">
<legend>Schedule</legend>
<input id="Sunday" name="input_day_sun" type="checkbox" value="Sun"/>
<label for="Sunday">Sunday</label>
<input id="Monday" name="input_day_mon" type="checkbox" value="Mon"/>
<label for="Monday">Monday</label>
<input id="Tuesday" name="input_day_tue" type="checkbox" value="Tue" checked/>
<label for="Tuesday">Tuesday</label>
<input id="Wednesday" name="input_day_wed" type="checkbox" value="Wed"/>
<label for="Wednesday">Wednesday</label>
<input id="Thursday" name="input_day_thu" type="checkbox" value="Thu"/>
<label for="Thursday">Thursday</label>
<input id="Friday" name="input_day_fri" type="checkbox" value="Fri"/>
<label for="Friday">Friday</label>
<input id="Saturday" name="input_day_sat" type="checkbox" value="Sat" checked/>
<label for="Saturday">Saturday</label>
</fieldset>
<script type="text/javascript" src="system/scripts/igrX.js"></script>
<script type="text/javascript">
var htm = igrx.htm();
</script>
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化