資-----讀→→查詢(不涉及資料異動)
料 寫→→刪除
操 寫→→新增
作——寫→→修改
查詢特性:
1欄位數量<=原資料表
2資料筆數<=原資料表
運算子:
\→取商數
mod→取餘數
access
iif(條件,如果成立要做什麼事,如果不成立要做什麼事)
format(數字,"格式")
format([薪資]*0.05,"""NT$""#,###.00")
稅金: Format([薪資]*0.05,"""NT$""#,###.00")
date() 顯示日期
<h1 style="font-size:120pt"> 歡迎</h1>
當h1和120pt起衝突,會以我們設定的120pt為主
font代表字形
font-weight 字的寬度
font-family: 字型
font-align: 字的對齊方式
text-decoration 字的裝飾/字的底線虛線不要線
cursor 游標外觀
text-transform 控制文字大小寫
text-shadow:10px 10px 5ox #顏色 字的陰影:(x,y,字暈開的程度) 可以一次加多層次陰影
box-shaow 陰影
letter-s
pacing:12pt 字與字的間距有12pt(對中文有效)
word-spacing 單字與單字的間距(對中文無效)
h1~h6:文字,適用於標題
<p>文字,內文,已經很少使用
<strong>文字,內文,新型的p
<pre>文字,內文,會按照你打的內文編排顯示
hr 插入水平線
i 文字斜體
u 文字粗體
<form></form>表單
<input type="text"/> 獨立,表文字
<input type="text" value="aaa"/> 預設文字是aaa
<input type="button"/> 按鈕
<input type="submit"/> 提交
<input type="reset"/> 還原
<input type="file"/> 選擇檔案
<input type="password"/> 帳號
<input type="checkbox"/> 方形
<input type="radio"/> 圓形
<tsextarea rows="10" cols="20"></tsextarea> 多行文字表格,可以寫很多行文字
opacity 文字的透明程度
width:inherit 繼承上面(父親)的寬度設定
background-image: url('圖片.jpg') 背景圖片
background-repeat:round 背景如何並排顯示在螢幕中
<table style="border:3px solid" 外框有3px粗細的實線
border-spacing 框線的距離(上 下)
padding 文字到框的距離
假如<h1 class="ha">wnfhuihefkntghi</h1> 設定一個class取名為ha
在上方tittle那邊設定一個style 在裡面可以直接控制ha的形狀,就不必到中間body變更了
<style>
.ha{
font-size=48pt;
text-color=red;
}
</style>
<select>
<option>第一個選項</option>
<option>第二個選項</option>
</select>
<fieldset style="width:250px"> form裡面的小表單
<legend>登入系統</legend>小表單的標題,會放在框線
</fieldset>
<input id="Button1" type="button" value="放大" />
<p id="news">新聞新聞</p>
<script>
var btn1 = document.getElementById("Button1");
btn1.addEventListener('click',function(){
news.style.fontSize = "48pt";
});
var 自己取名字xx=文獻.取得文素透過id("id名稱")
xx.加入事件偵聽('發生什麼事件會觸發',方法(){
要改變的id.要改變的事情
news.style.fontSize = "48pt";
});
留言列表