HTML登录窗口极简版
摘要:<table id="Login1"> <tr> <td style="text-align:center;color:red;">tulater登录</td></tr> <tr> <td class="label"><label for="username">用户名</label></td></t
阅读全文
<SPAN STYLE="color: blue">蓝色</SPAN>
摘要:<SPAN STYLE="color: blue">蓝色</SPAN> span标签是超文本标记语言(HTML)的行内标签,被用来组合文档中的行内元素。
阅读全文
<p>与<br/>的区别
摘要:<p>与<br/>的区别 功能差异: p标签:用于定义一个段落。浏览器会在段落 前后 自动添加垂直空白,将段落与其他内容分隔开。它是一个块级元素,意味着它会占据一行,并在其前后产生换行12。 br标签:用于插入一个简单的换行。它是一个空元素,没有结束标签。它只强制换行,不会在前后添加额
阅读全文
点击单选按钮改变表格行颜色
摘要:<!DOCTYPE html> <html> <head> <style> .highlight { background-color: #ffeb3b; /* 黄色背景 */ } table { border-collapse: collapse; width: 100%; } td, th {
阅读全文
HTML、CSS 和 JavaScript 实现点击单选按钮(Radio)动态改变页面内容的示例
摘要:<input type="radio" name="selector" id="option1" value="1" checked>选项1 <input type="radio" name="selector" id="option2" value="2">选项2 <input type="rad
阅读全文
webBroker_表格某一行样式
摘要:FDQuery1.First; while not(FDQuery1.Eof) do begin if FDQuery1.Fields.FieldByNumber(1).AsString = Request.QueryFields.Values['aID'] then aHTMLtext.Add('
阅读全文
webBroker_删除前确认
摘要:aHTMLtext.Add('<td> <a onclick="return confirm(''确认删除?'')" href ="/deleteBug?DeleteID=' + FDQuery1.Fields.FieldByNumber(1).AsString +'">删除</a> </td> '
阅读全文
webBroker的多行文本 <textarea name="comments"
摘要:<form action="LL" method="post"> <textarea name="comments" placeholder="请输入细节..." rows="4" cols="50"></textarea> <br> <input type="submit" value="提交">
阅读全文
webBroker的<input type="color" name="favcolor"> 颜色 输入
摘要:<form action="MN" method="post"> <input type="color" name="favcolor"> <br> <input type="submit" value="提交"> </form> //MN <input type="color" name="fav
阅读全文
webBroker的<input type="date" name="birthday"> 日期输入
摘要:<form action="ZZ" method="post"> <input type="date" name="birthday"> <br> <input type="submit" value="提交"> </form> ///ZZ <input type="date" name="birt
阅读全文
webBroker的option,类似Delphi的ComboBox1
摘要:<form action="KK" method="post"> <select name="address" id="ida"> <option value="cc">长春</option> <option value="hz">杭州</option> <option value="bj" sel
阅读全文
webBroker的radio的三选 一
摘要:<form action="DJ" method="post"> <input type="radio" name="gender" value="male" checked>男 <input type="radio" name="gender" value="female"> 女 <input t
阅读全文
WebBroker返回到主页_代码
摘要:s:=s+ '<input type="button" name="Submit" value="返回到主页" onclick="location.href=''http://127.0.0.1:8080/''" /> '; <a href ="/">返回主页面</a>
阅读全文
div+CSS
摘要:可以将CSS直接写进DIV里 <div id="box3" style=" background:#eeef;width: 250px;height:250px;float:left;"> <style></style> </div> 一个div靠在另一个div左边 <div id="box3" s
阅读全文
webBroker的checkbox的选择
摘要:https://blog.csdn.net/pcplayer/article/details/69230165 <form action="CK" method="post"> <input type="checkbox" name="CK1" Value="1">跑步 <input type="c
阅读全文
字体常用代码
摘要:<p style="FONT-SIZE: 30px; FILTER: shadow(color=black); WIDTH: 100%; COLOR: #e4dc9b; LINE-HEIGHT: 150%; FONT-FAMILY: 楷体;"> 没谱</p> <font color="#ff0000
阅读全文
HTML圆角按钮
摘要:<!DOCTYPE html> <html lang="zh-Hans"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>圆角按钮
阅读全文
HTML中正确设置表格table边框border的三种办法
摘要:HTML中正确设置表格table边框border的三种办法 <style> table { width: 400px; margin: 0 auto; border: 1px solid #000000; border-collapse: collapse; } th, td { border: 1
阅读全文