Microsoft PowerPoint - HTML.pptx

Size: px
Start display at page:

Download "Microsoft PowerPoint - HTML.pptx"

Transcription

1 HTML 4/5 WWW (World Wide Web) HTML (HyperText Markup Language) HTML (text) (tags) (web browser) ( 50 ) : IE Firefox, Safari, Google Chrome, Edge HTML <HTML> index.htm, default.htm, abc.php, xyz.asp <HEAD> <TITLE> </TITLE> <STYLE> </STYLE> <SCRIPT>javascript</SCRIPT> </HEAD> <BODY> 5A ,,,, </BODY> </HTML> TAG HTML 4.0 2

2 /: : <html> <head> <title> </title> </head> browser <body> </body> </html> \n <p> <br> paragraph break HTML hyperlink (anchor) Hot Mail Mr. Szeto <a href=" Mail</a> Yahoo <br> Mr. <a href=" <br> <a href=" target ="_blank">yahoo</a> image <img src="school.gif"> <img src="school.gif" align="left" width="10" height="15" alt="sch logo"> <img src="images/school.gif" align="right"> <img src="images/school.gif" align="center"> HTML 4.0 4

3 1-7 <font size="1">=1 </font><p> <font size="2">=2 </font><p> <font size="3">=3 </font> <p> <font size="4">=4 </font><p> <font size="5">=5 </font><p> <font size="6">=6 </font><p> <font size="7">=7 </font><p> <font size="99">=99 </font><p> <font size="+3">=+3</font><p> <basefont size="7" face="arial" color="#0000ff"> <font size="6" color="#ff0000" face="verdana">abc College</font> HTML <strong> Strong </strong> <b> Bold </b> <i> Italic </i> <u> Underline </u> <em> Emphasize </em> <sup> 3 Superscript </sup> <sub> 2 Subscript </sub> <tt> Teletype </tt> <big> Big </big> <small> Small <small> X<sup>3</sup> <p> y<sub>2</sub> y<sub>1</sub> X 3 y 2 y 1 HTML 4.0 6

4 Heading 1-6 <h1> Heading 1</h1> <h2> Heading 2</h2> <h3> Heading 3</h3> <h4> Heading 4</h4> <h5> Heading 5</h5> <h6> Heading 6</h6> <h1 align="center">html</h1> <hr> = horizontal line <hr size=5 width=50% align=center color=red noshade> HTML : myself.htm <p align="left"></p> <p align="center"></p> <p align="right"></p> <center> </center> Login: cs1xx 5A / / table : (e.g. ) (/) HTML 4.0 8

5 Hyper link & Book mark? <a href="#answer"></a> <blockquote> <p> <p> <blockquote> <p> <p> </blockquote> </blockquote> <a name="answer"> HTML Unordered List <ul> <li>hk</li> <li>kln</li> </ul> <ul type="disc"> <li>hk</li> <li>kln</li> </ul> <ul type="circle"> <li>hk</li> <li>kln</li> </ul> <ul type="square"> <li>hk</li> <li>kln</li> </ul> <ul> <li type="disc"> HK</li> <li type="circle">kln</li> <li type="square">nt</li> </ul> HK Kln HK Kln HK Kln HK Kln NT Ordered List <ol> <li>hk</li> <li>kln</li> </ol> <ol type="1" start="11"> <li>hk</li> 11. HK <li>kln</li> 12. Kln </ol> <ol type="i"> <li>i. HK</li> <li>ii. Kln</li> </ol> <ol type="a"> <li>a. HK</li> <li>b. Kln</li> </ol> <ol type="a"> <li value="2">hk</li> <li value="4">kln</li> <li value="6">nt</li> </ol> 1. HK 2. Kln i. HK ii. Kln a. HK b. Kln B. HK D. Kln F. NT HTML

6 Table <table border=2> table row table data <tr> <tr> <tr> <tr> </table> <td>a1</td> <td>a2</td> <td>a3</td> <td>b1</td> <td>b2</td> <td>b3</td> <td>c1</td> <td>c2</td> <td>c3</td> <td>d1</td> <td>d2</td> <td>d3</td> row1 row2 row3 row4 column1 column2 column3 <td colspan=3> A1, A2, A3 </td> <td> B1 </td> <td rowspan=2> <td> B3 </td> <td> C1 </td> B2, C2 </td> <td> C3 </td> <td> D1 </td> <td> D2 </td> <td> D3 </td> HTML <table width=80% border=1 align=center> <tr align=center> <td colspan=3>cell 1</td> <tr align=center> <td>cell 2</td> <td rowspan=2>cell 3</td> <td>cell 4</td> <tr> <td nowrap>cell 5</td> <td>cell 6</td> Cell 1 Cell 2 Cell 4 Cell 3 Cell 5 Cell 6 tr=table row align=center rowspan=2 2 colspan=3 3 td = table data nowrap </table> HTML

7 <table bgcolor=lavender cellpadding=5 cellspacing=10> <tr> <tr> 5A <tr> 25/12/1990 </table> <table border=1 cellpadding=5> <tr> <th>name:</th> <td>chan Tai Man</td> <tr> <th>class:</th> <td>f.7a</td> </table> border Name: Class: Chan Tai Man F.7A tr = table row th = head (bold, center) td = table data (column) HTML <table width=60% border=0 cellpadding=2 cellspacing=3 align=center bgcolor=pink> <tr> <td width="20%" align="left" >cell 1</td> <td width="20%" align="center" >cell 2</td> <td width="20%" align="right" >cell 3</td> cell 1 cell 2 cell 3 cell 4 cell 5 cell 6 <tr> <td align="center" bgcolor=#ff0000>cell 4</td> <td align="center" bgcolor=#00ff00>cell 5</td> <td align="center" bgcolor=#0000ff>cell 6</td> </table> HTML

8 : calendar.htm SUN MON TUE WED THU FRI SAT HTML : calendar.htm : Hello there world. How are you today? s 1 %[^\n] scanf("%[^\n]", s) ; \n Hello there world. How are you today? 2 %[elho] scanf("%[elho]", s) ; elho Hello 3 %[^rw] scanf("%[^rw]", s) ; r w Hello the 4 %[^H] scanf("%[^h]", s) ; H : Introduction to C - cityu.htm TOC (+ ) HTML

9 <iframe name="frame01" src="chp1.htm" width="40%" height=400 align="top"> <iframe name="frame02" src="chp2.htm" align="left" scrolling="auto"> <iframe name="frame03" src="chp3.htm" iframeborder=1 scrolling="no"> <iframe name="frame04" src="chp4.htm" marginwidth=20 marginheight=20> HTML <img src="images/hkmap.jpg" usemap="#map1"> <map name="map1"> <area href="t1.htm" alt="map of Hong Kong" coords="0,0,50,50" target="main"> <area href="t2.htm" shape="circle" coords="100,100,20"> <area href="t3.htm" shape="rect" coords="0,200,100,270"> <area href="t4.htm" shape="poly" coords="150,200,100,250,200,250"> </map> HTML

10 <meta HTTP-EQUIV="REFRESH" content="10; url= <META HTTP-EQUIV="Site-Enter" content="revealtrans(duration=1.0,transition=15)"> <META HTTP-EQUIV="Site-Exit" content="revealtrans(duration=1.0,transition=16)"> <meta name="description" content="free Web tutorials" /> <meta name="keywords" content="html,css,xml,javascript" /> <meta http-equiv="content-type" content="text/html; charset=big5" /> HTML <marquee behavior="scroll"> 1</marquee> <marquee behavior="slide" direction="right" loop="infinite"> 2</marquee> <bgsound src="sound/school.mid" loop="-1"> <pre> pre-formatted text </pre> pre-formatted text HTML

11 <html> <head> <LINK REL="StyleSheet" HREF="global.css" TYPE="text/css"> <style type="text/css"> style sheet font {color:blue; font-size:20 #D1 {color:red; font-size:30 #D2 {color:rgb(255,0,0); font-size:30.c1 {color:green; font-size:40 th, td {font-family: "lucida console"; font-size:10pt; white-space: nowrap; </style> </head> <body> <font>html tag</font> <font id=d1> </font> <font class=c1> </font> <span style={color:navy> Special <span id=d2> </span> </body> </html> </span> HTML : form <form name="form1" method="post" action="register.php"> </form> <input type="hidden" name="level" value="f.7"> <input type="text" name="name" size="36" value="chan Tai Man"> <input type="password" name="pwd" size="10" value="123456"> <textarea name="comment" rows="3" cols="40">comments</textarea> <input type="checkbox" name="elective" value="ca">computer <input type="checkbox" name="elective" value="ms">maths <input type="radio" name="sex" value="m" checked>male <input type="radio" name="sex" value="f">female <select size="1" name="yob" style="font-size: 12pt"> <option value="4" selected>1984</option> <option value="5">1985</option> <option value="6">1986</option> </select> <input type="submit" value="submit" name="b1"> <input type="reset" value="reset" name="b2"> HTML

12 <script> function test1(){ if(document.all.gender[0].checked==true) document.all.gender.value = document.all.gender[0].value; else document.all.gender.value = document.all.gender[1].value; function test2(){ alert( document.all.grade.selectedindex +" of " +document.all.grade.length); if(document.all.grade[0].selected==true) alert("a selected"); function test3(){ var msg = ""; for(i=0;i<document.all.subj.length;i++) if(document.all.subj[i].checked) msg += i+" "; alert(msg); HTML <body onload="init();"> <p>1. radio button:<p> <input type=radio name="gender" value=" " onclick="test1()" checked>male <input type=radio name="gender" value=" " onclick="test1()">female <p>2. text box:<p> <input type=text name=gender value=m size=2> <p>3. drop down list:<p> <select size="1" name="grade" onchange="test2()"> <option value="a">a</option> <option value="b">b</option> <option value="e" selected>e</option> </select> <p>4. check box:<p> <input type=checkbox name="subj" value="c" onclick="test3()" checked>c <input type=checkbox name="subj" value="java" onclick="test3()" >Java <input type=checkbox name="subj" value="pascal" onclick="test3()" >Pascal <p>5. textarea:<p> <textarea name=comments rows=7 cols=80>comments</textarea><p> </body> HTML

13

14

15

16 HTML - FORM <input type=text name=sname > <select> <option></option> <option></option> </select> <input type=radio name=gender > <input type=radio name=gender > <input type=checkbox name=age > <input type=checkbox name=age > <input type=checkbox name=age > () 18 <textarea> </textarea> 18 <input type=button value="" > 1 HTML - FORM sname <input type=text value=" " name=sname > <input type=button value="" onclick="change()" > <script> function change(){ document.all.sname.value = ""; </script> num 37 Y result function checkprime javascript

17 mstatus title Ms <select name = "mstatus" onchange = "update()" > </select> <option value = "S" >Single </option> <option value = "M" >Married </option> <input type=text name=title value="ms" readonly> <script> function update(){ if (document.all.mstatus.selectedindex == 0) else </script> document.all.title.value = "Ms"; document.all.title.value = "Mrs"; 3 <input type=radio <input type=radio name=gender name=gender title Ms onclick="change()" onclick="change()" checked> > <input type=text name=title value="ms" readonly> <script> function change(){ </script> if (document.all.gender[0].checked == true) else document.all.title.value = "Sir"; document.all.title.value = "Madam"; 4

18 ICT BASF VA () result <input type=checkbox <input type=checkbox <input type=checkbox name=subj name=subj name=subj onclick="change()" onclick="change()" onclick="change()" >ICT >BASF >VA <textarea name=result rows=5 cols=50> </textarea> <script> function change(){ var s=""; if (document.all.subj[0].checked == true) if (document.all.subj[1].checked == true) if (document.all.subj[2].checked == true) document.all.result.value = s; </script> s+=" \n"; s+="\n"; s+="\n"; 5 var turn=0, empty=-1; var box = new Array(10); // 0=o, 1=x function chgimg(obj){ // e.g.cell1 var n=obj.name.charat(4); obj.src = "o.jpg"; obj.src = "x.jpg"; function whowins(){ return 0; // O wins return 1; // X wins return 9; // ties return -1; // continue function init(){ for(i=1;i<10;i++){ box[i] = empty; // -1 document.all.cell1.src = "blank.jpg"; turn = 0; function endgame(n){ if(n ) alert("ties."); else alert("o wins."); init(); <img src="blank.jpg" name="cell1" onclick="chgimg(this)"> : <img src="blank.jpg" name="cell9" onclick="chgimg(this)"> blackjack HCF/LCM 6

19 HTML (image) 1. <img src="card0.png" width=100> <img src="card1.png">... <img src="card51.png"> Javascript 2. <script> for(i=0;i<52;i++) document.write('<img src=" ">'); </script> <img src="cardback.png"> 3. Display cards for(i... document.write('<img src=" ' ' ">'); 4. array <script> var num = new Array(52); // int num[52]; var card = new for(i=0;i<52;i++) num[ ]= ; </script> 5. Shuffle 洗牌 <script> for(i=0;i<52;i++){ do{ n = while(num[ ] ); num[ ] = </script> card[ ] = 6. display 顯示 <script> for(i=0;i<52;i++){ </script> document.write('<img src=" ' ' ">'); 7. n = rand()%52; n = Math.floor(Math.random()*52);

20 8. onclick event <script> var num = new Array(52); var card = new Array(52); var curr=0; for(i=0;i<52;i++) num[i]= ; // int num[52]; // current 目前 for(i=0;i<52;i++){ do{ n = Math.floor(Math.random()*52); while(num[ ]<1); num[ ]=0; card[ ]= ; function chgpic(){ document.all.mycard. = "card"+ +".png"; curr++; </script> <img src="cardback.png" width=200 name= onclick=" ">

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2.

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2. 2005-06 p.1 HTML HyperText Mark-up Language 1. HTML Logo, Pascal, C++, Java HTML 2. HTML (tag) 3. HTML 4. HTML 1. HTML 2. 3. FTP HTML HTML html 1. html html html cutehtmleasyhtml 2. wyswyg (What you see

More information

A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ / ] NotePad A-2

A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ / ] NotePad A-2 HTML A-1 HTML A-2 A-2 HTML A-8 A-3 A-14 A-4 A-26 A-5 A-30 A-6 A-42 A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ /

More information

5-1 nav css 5-2

5-1 nav css 5-2 5 HTML CSS HTML CSS Ê Ê Ê Ê 5-1 nav css 5-2 5-1 5 5-1-1 5-01 css images 01 index.html 02 5-3 style.css css 03 CH5/5-01/images 04 images index.html style.css 05

More information

RUN_PC連載_10_.doc

RUN_PC連載_10_.doc PowerBuilder 8 (10) Jaguar CTS ASP Jaguar CTS PowerDynamo Jaguar CTS Microsoft ASP (Active Server Pages) ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar Server ASP

More information

XHTML width/height bdo a code href object charset codebase hreflang archive lang type alt dir name name xml:lang rel/rev align shape/coords hspace/vsp

XHTML width/height bdo a code href object charset codebase hreflang archive lang type alt dir name name xml:lang rel/rev align shape/coords hspace/vsp XHTML CSS CSS CSS DOCTYPE Switch XHTML width/height bdo a code href object charset codebase hreflang archive lang type alt dir name name xml:lang rel/rev align shape/coords hspace/vspace big tabindex accesskey

More information

Microsoft Word - PHP7Ch01.docx

Microsoft Word - PHP7Ch01.docx PHP 01 1-6 PHP PHP HTML HTML PHP CSSJavaScript PHP PHP 1-6-1 PHP HTML PHP HTML 1. Notepad++ \ch01\hello.php 01: 02: 03: 04: 05: PHP 06:

More information

互動網頁技術系列課程 HTML與CSS網站基礎設計 [12pt]

互動網頁技術系列課程 HTML與CSS網站基礎設計 [12pt] HTML CSS / 2011 HTML CSS 1/ 47 1 2 HTML 3 4 HTML 5 5 : CSS 6 CSS 7 HTML CSS 2/ 47 HTML CSS 3/ 47 ( BOM) UTF-8 Notepad++ (Winodws), Fraise/Smultron (Mac), VIM ( ) HTML CSS 4/ 47 UTF-8? UTF-8 (unicode),

More information

A-2 l 跨裝置網頁設計 A-1 <frameset> <frame> <noframes> (frame) HTML (navigation bar)

A-2 l 跨裝置網頁設計 A-1 <frameset> <frame> <noframes> (frame) HTML (navigation bar) AppendixA HTML A-1 A-2 A-3 A-2 l 跨裝置網頁設計 A-1 (frame) HTML (navigation bar) HTML 框架元素 l A-3 1. 2. 3. 4.

More information

關於本書 Part 3 CSS XHTML Ajax Part 4 HTML 5 API JavaScript HTML 5 API Canvas API ( ) Video/Audio API ( ) Drag and Drop API ( ) Geolocation API ( ) Part 5

關於本書 Part 3 CSS XHTML Ajax Part 4 HTML 5 API JavaScript HTML 5 API Canvas API ( ) Video/Audio API ( ) Drag and Drop API ( ) Geolocation API ( ) Part 5 網頁程式設計 HTML JavaScript CSS HTML JavaScript CSS HTML 5 JavaScript JavaScript HTML 5 API CSS CSS Part 1 HTML HTML 5 API HTML 5 Apple QuickTime Adobe Flash RealPlayer Ajax XMLHttpRequest HTML 4.01 HTML 5

More information

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 Web (CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 1092 1/ 16 30.75 748 2005 1 1 2005 1 1 : 1 3 100

More information

01

01 Web: www.wjsfedu.com 01 www.wjsfedu.com 02 03 www.wjsfedu.com 04 2 Daily Schedule 7/26 Tue Day 3 7/27 Wed Day 4 7/28 Thu 7/25 Mon Day 2 Day 5 7/24 Sun Day 1 7 7/29 Fri Day 6 7/30 Sat Day 7 05 7/31 Sun

More information

IsPostBack 2

IsPostBack 2 5 IsPostBack 2 TextBox 3 TextBox TextBox 4 TextBox TextBox 1 2 5 TextBox Columns MaxLength ReadOnly Rows Text TextMode TextMode MultiLine TextMode MultiLine True False TextMode MultiLine Password MulitLine

More information

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费 助 理 电 子 商 务 考 试 真 题 试 题 第 一 部 分 : 理 论 部 分 一 单 项 选 择 题 1 ( B ) 是 信 息 系 统 的 核 心 组 成 部 分 A 逻 辑 模 型 B 数 据 库 C 概 念 模 型 D 以 上 全 部 2 ping www.163.com -t 中 参 数 t 的 作 用 是 :( A ) A 进 行 连 续 测 试 B 在 新 窗 口 中 显 示 C

More information

Microsoft PowerPoint - Ch00-4-XHTML.ppt [相容模式]

Microsoft PowerPoint - Ch00-4-XHTML.ppt [相容模式] Chapter 0-4 (XHTML) 陈瑞奇 (J.C. Chen) 亚洲大学资讯工程学系 多媒体网站技术应用 整合性课程 IE, Firefox, Safari, Opera, Chrome HTML/CSS DHTML/XHTML/XML JavaScript, JScript, VBScript Java Applet, ActiveX, AJAX Plug-in (eg, Flash, PDF,

More information

RUN_PC連載_8_.doc

RUN_PC連載_8_.doc PowerBuilder 8 (8) Web DataWindow ( ) DataWindow Web DataWindow Web DataWindow Web DataWindow PowerDynamo Web DataWindow / Web DataWindow Web DataWindow Wizard Web DataWindow Web DataWindow DataWindow

More information

final

final 行 政 院 研 究 發 展 考 核 委 員 會 政 府 網 站 建 置 及 營 運 作 業 參 考 指 引 中 華 民 國 99 年 2 月 政 府 網 站 建 置 及 營 運 作 業 參 考 指 引 目 次 前 言 與 導 讀... 1 一. 緣 由... 1 二. 現 行 規 範 應 用 的 運 作 與 問 題... 1 三. 政 府 網 站 建 置 與 營 運 作 業 參 考 指 引 之 規

More information

Microsoft Word - 第3章.doc

Microsoft Word - 第3章.doc Java C++ Pascal C# C# if if if for while do while foreach while do while C# 3.1.1 ; 3-1 ischeck Test() While ischeck while static bool ischeck = true; public static void Test() while (ischeck) ; ischeck

More information

HTML5 & CSS3 色彩 背景與漸層屬性 12-1 (color property) CSS 3 color HTML opacity HTML CSS Color Module Level 3 W3C CSS

HTML5 & CSS3 色彩 背景與漸層屬性 12-1 (color property) CSS 3 color HTML opacity HTML CSS Color Module Level 3 W3C CSS 12 Chapter 12-1 12-2 12-3 HTML5 & CSS3 色彩 背景與漸層屬性 12-1 (color property) CSS 3 color HTML opacity HTML CSS Color Module Level 3 W3C CSS 3 http://www.w3.org/tr/css3-color/ 12-1-1 color ( ) (foreground color)

More information

Microsoft PowerPoint - ch15_1.ppt

Microsoft PowerPoint - ch15_1.ppt JavaScript 實用範例 15-1 視窗基本操作 15-1-1 歡迎對話方塊 顯示歡迎視窗 15-1-2 告別對話方塊 顯示告別視窗

More information

Chapter V.S. PC

Chapter V.S. PC Chapter 14 14-1 V.S. PC 14-2 14-3 14-4 14-1 V.S. PC PC PC Yahoo! PC (https://tw.yahoo.com/) Yahoo! (https:// tw.mobi.yahoo.com/) Yahoo! a b a PC b PC PC Flash HTML5 CSS3 PC 14-2 14-3 PC PC Yahoo! PC https://tw.yahoo.com/

More information

untitled

untitled PowerBuilder Tips 利 PB11 Web Service 年度 2 PB Tips PB9 EAServer 5 web service PB9 EAServer 5 了 便 web service 來說 PB9 web service 力 9 PB11 release PB11 web service 力更 令.NET web service PB NVO 論 不 PB 來說 說

More information

Microsoft Word - 01.DOC

Microsoft Word - 01.DOC 第 1 章 JavaScript 简 介 JavaScript 是 NetScape 公 司 为 Navigator 浏 览 器 开 发 的, 是 写 在 HTML 文 件 中 的 一 种 脚 本 语 言, 能 实 现 网 页 内 容 的 交 互 显 示 当 用 户 在 客 户 端 显 示 该 网 页 时, 浏 览 器 就 会 执 行 JavaScript 程 序, 用 户 通 过 交 互 式 的

More information

ebook4-12

ebook4-12 12 CGI C G I (Common Gateway Interface) We b P H P C G I H T M L H T T P H T M L We b H T T P We We b I n t e r n e t R F C h t t p : / / w w w. i e t f. o rg / P H P C G I C G A p a c h e C G I P H P

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 按钮对象 (button) 当 JavaScript 读到 标记中的 type 属性值为 button 时, 自动建立一个按钮对象, 并将该对象放到表单对象的 elements 数组当中 按钮对象包括 : 普通按钮 (button) 提交按钮 (submit) 重置按钮 (reset) 1. 使用按钮对象的格式 document.forms[ 索引值 ].elements[ 索引值

More information

關於本書 l 3 PhoneGap Appcelerator Titanium Sencha Touch (wrapper framework) Native App PhoneGap Build Native App Hybrid App Java Objective-C Android SDK

關於本書 l 3 PhoneGap Appcelerator Titanium Sencha Touch (wrapper framework) Native App PhoneGap Build Native App Hybrid App Java Objective-C Android SDK 2 l 跨裝置網頁設計 Android ios Windows 8 BlackBerry OS Android HTML 5 HTML 5 HTML 4.01 HTML 5 CSS 3 CSS 3 CSS 2.01 CSS 3 2D/3D PC JavaScript

More information

Microsoft Word - 2011年12月號墾汀排版.doc

Microsoft Word - 2011年12月號墾汀排版.doc 目 錄 編 者 的 話 四 十 八, 讓 恩 典 發 酵 郭 洪 龍 目 錄 牧 者 家 書 和 平 福 音 的 使 者 黃 家 渭 傳 道 特 稿 四 報 佳 音 蕭 克 諧 博 士 封 面 專 題 以 賽 亞 的 48 天 以 賽 亞 小 組 不 可 忘 記 祂 的 一 切 恩 惠 曾 憲 祥 雲 彩 片 片 延 續 靈 修 2 隻 字 也 不 能 廢 去 謝 文 偉 網 上 行 心 靈 札 記

More information

ii Vue Bootstrap 4 ES 6 Vue Vue Bootstrap 4 ES 6 Vue 2 vue html vue html vue Vue HTML 5 CSS ES 6 HTML 5 CSS Visual Studio Code h

ii Vue Bootstrap 4 ES 6 Vue Vue Bootstrap 4 ES 6 Vue 2 vue html vue html vue Vue HTML 5 CSS ES 6 HTML 5 CSS Visual Studio Code h ii Vue Bootstrap 4 ES 6 Vue Vue Bootstrap 4 ES 6 Vue 2 vue010101.html vue010104.html vue0101 01 04 Vue HTML 5 CSS ES 6 HTML 5 CSS Visual Studio Code https://code.visualstudio.com/ Chrome XAMP Visual Studio

More information

2.4 Selenium Python Selenium Selenium Selenium Selenium pip install selenium Chrome WebDriver Google Chrome (Linux, Mac, Windows) Chrome WebDriv

2.4 Selenium Python Selenium Selenium Selenium Selenium pip install selenium Chrome WebDriver Google Chrome (Linux, Mac, Windows) Chrome WebDriv Chapter 02 大數據資料爬取與分析 Python Python Requests BeautifulSoup Regular Expression Selenium Pandas Python 2.4 Selenium Python 2.4.1 Selenium Selenium Selenium Selenium pip install selenium Chrome WebDriver

More information

untitled

untitled 01 1-1 PHP 1-2 PHP 1-3 MySQL 1-4 1-5 http://w3techs.com/technologies/history_overview/programming_language w3techs.com (Server-side) 2012 7 77.8% PHP PHP PHP PHP 1-1 PHP PHP HTML Script Windows ASP(Active

More information

untitled

untitled 12-1 -2 VC# Web Blog 12-1 -1-1 12-1.1-1 C:\ ChartModuleSample_CSharp\Application\2001\ Files\ 4096 KB 120 Web.Config httpruntime maxrequestlength executiontimeout 12-2

More information

1 1 大概思路 创建 WebAPI 创建 CrossMainController 并编写 Nuget 安装 microsoft.aspnet.webapi.cors 跨域设置路由 编写 Jquery EasyUI 界面 运行效果 2 创建 WebAPI 创建 WebAPI, 新建 -> 项目 ->

1 1 大概思路 创建 WebAPI 创建 CrossMainController 并编写 Nuget 安装 microsoft.aspnet.webapi.cors 跨域设置路由 编写 Jquery EasyUI 界面 运行效果 2 创建 WebAPI 创建 WebAPI, 新建 -> 项目 -> 目录 1 大概思路... 1 2 创建 WebAPI... 1 3 创建 CrossMainController 并编写... 1 4 Nuget 安装 microsoft.aspnet.webapi.cors... 4 5 跨域设置路由... 4 6 编写 Jquery EasyUI 界面... 5 7 运行效果... 7 8 总结... 7 1 1 大概思路 创建 WebAPI 创建 CrossMainController

More information

1. 2. Flex Adobe 3.

1. 2. Flex Adobe 3. 1. 2. Flex Adobe 3. Flex Adobe Flex Flex Web Flex Flex Flex Adobe Flash Player 9 /rich Internet applications/ria Flex 1. 2. 3. 4. 5. 6. SWF Flash Player Flex 1. Flex framework Adobe Flex 2 framework RIA

More information

讀 經 進 度 表 ( : 一 年 讀 經 進 度, : 二 年 讀 經 進 度 ; 完 成 後 請 圈 選 喔! ) Sun Mon Tue 29 30 1 6 7 8 西 1 西 2 西 3 西 4 雅 2 帖 前 1 帖 前 2 雅 3 雅 4 加 1 加 2 加 3 來 7 來 8 13 1

讀 經 進 度 表 ( : 一 年 讀 經 進 度, : 二 年 讀 經 進 度 ; 完 成 後 請 圈 選 喔! ) Sun Mon Tue 29 30 1 6 7 8 西 1 西 2 西 3 西 4 雅 2 帖 前 1 帖 前 2 雅 3 雅 4 加 1 加 2 加 3 來 7 來 8 13 1 與神 與人立約 在十二月 恩典的盛筵 之靈命操練中 您期望自己可以有什麼改變呢 此刻 邀請您寫下對本月的期許 並放在每日的禱告中 與神立下美好約定 我的陪讀時間表 星期一 早 中 晚 星期二 星期三 星期四 星期五 星期六 星期日 讀 經 進 度 表 ( : 一 年 讀 經 進 度, : 二 年 讀 經 進 度 ; 完 成 後 請 圈 選 喔! ) Sun Mon Tue 29 30 1 6 7 8

More information

Microsoft Word - 2012年6月號墾汀排版.doc

Microsoft Word - 2012年6月號墾汀排版.doc 目 錄 編 者 的 話 郭 洪 龍 目 錄 1 牧 者 家 書 石 林 潤 鳳 2 證 道 權 能 感 恩 的 人 張 振 華 牧 師 筆 錄 : 張 秀 儀 5 特 稿 畢 業 = 成 功?! 章 可 銘 10 雲 彩 片 片 主 的 深 恩 永 遠 記 在 心 陳 淑 貞 15 恩 典 歲 月 謝 周 淑 珍 22 禱 告, 我 願 意 : 為 敏 玲 送 上 祝 福! 謝 周 淑 珍 27 非

More information

大漠 伪前端, 就职于淘宝

大漠 伪前端, 就职于淘宝 CSS Grid Layout 2016-12-17 @ 大漠. #CSSConf https://www.flickr.com/photos/19139526@n00/8331063530/ 大漠 伪前端, 就职于淘宝 古老的 table 布局 现代 Web 布局 Float inline-block display: table position (absolute 或 relative)

More information

ebook37-4

ebook37-4 4 4.1 H T M L F r o n t P a g e i m a g e m a p H T M L We b We b 4.1.1 We b We b We b We b 4.1.2 We b 4 35 4.1.3 4-1 G I F 4-2 36 4-1 ( 4-2 ) 4.1.4 We b We b 4-3 4-3 4 37 Ly n x 4-4 4-4 4.1.5 We b We

More information

<img>

<img> 04 圖片 4-1 4-2 4-3 4-4 網頁程式設計 4-1 網頁多媒體 Flash Java Applets HTML 8 4-1-1 圖片 JPEG Joint Photographic Experts Group 非失真模式 (lossless) 基本模式 (baseline standard) 1 2 12 JPEG 6 JPEG.jpg.jpe.jpeg GIF (graphic

More information

WWW PHP

WWW PHP WWW PHP 2003 1 2 function function_name (parameter 1, parameter 2, parameter n ) statement list function_name sin, Sin, SIN parameter 1, parameter 2, parameter n 0 1 1 PHP HTML 3 function strcat ($left,

More information

Chapter 09 專題 : 網站留言版 Python - Django

Chapter 09 專題 : 網站留言版 Python - Django Chapter 09 專題 : 網站留言版 9.1 CAPTCHA (Completely Automated Public Turing test to tell Computers and Humans Apart) CAPTCHA CAPTCHA OCR Yahoo EZ-Gimpy 9.1.1 django-simple-captcha Django django-simple-captcha

More information

(Microsoft Word - 2014-2015\246~\253\327\276\307\256\325\263\370\247i_\252k\271\316\256\325\270\263\267|\263q\271L_2015.11.02_)

(Microsoft Word - 2014-2015\246~\253\327\276\307\256\325\263\370\247i_\252k\271\316\256\325\270\263\267|\263q\271L_2015.11.02_) 仁 愛 堂 田 家 炳 小 學 學 校 報 告 2014-2015 年 度 1 仁 愛 堂 田 家 炳 小 學 2014-2015 年 度 周 年 校 務 報 告 目 錄 ( 一 ) 我 們 的 學 校 P.3 ( 二 ) 關 注 事 項 的 成 就 與 反 思 P.10 ( 三 ) 我 們 的 學 與 教 P.13 ( 四 ) 我 們 對 學 生 成 長 的 支 援 P.14 ( 五 ) 學 生

More information

MITSUBISHI

MITSUBISHI Q MITSUBISHI Web QJ71E71-100 QJ71E71-B5 QJ71E71-B2 PLC CPU!!! [ ]! PLC PLC CPU PLC PLC PLC PLC PLC CPU A - 1 A - 1 [ ]! PLC CPU PLC! 100mm 3.94in. PLC CPU RUN/STOP OPEN OPEN STOP PLC CPU RUN [ ]! PLC A

More information

台湾项目书

台湾项目书 两 岸 医 学 人 文 交 流 项 目 Cross-Taiwan Straits Medical Humanity Exchange Program 2016 年 寒 假 台 湾 交 流 团 步 入 大 学 课 堂 学 习 深 度 认 识 台 湾 医 疗 两 岸 医 学 生 互 动 交 流 项 目 简 介 台 湾 的 医 疗 服 务 水 平 在 亚 洲 居 于 领 先 地 位 2012 年, 全 球

More information

Microsoft PowerPoint - ch07_1.ppt

Microsoft PowerPoint - ch07_1.ppt 表單 7-1 認識表單 表單的建立可以分成三個階段 : 一 決定要蒐集的資料二 建立表單三 設計表單處理程式 單行文字方塊 多行文字方塊 核取方塊 選擇鈕 下拉式功能表 按鈕 密碼欄位 7-2 將電腦架設為 Web 伺服器 1. 2. 3. 7-3 建立表單的輸入介面 ... 標籤屬性解說 : ACCEPT-CHARSET="..." ACCEPT="... ACTION="URL

More information

epub 94-3

epub 94-3 3 A u t o C A D L AY E R L I N E T Y P E O S N A P S T Y L E X R E F - AutoLISP Object ARX A u t o C A D D C L A u t o C A D A u t o d e s k P D B D C L P D B D C L D C L 3.1 Wi n d o w s A u t o C A D

More information

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

Perl

Perl Perl 磊 Goal Introduction The first perl program Basical coding style Variable Data structure Control structure Regular expression Lab Reference Outline The first perl program Just type this following string

More information

2010 12 7 : :4.9s :44 7, 320KB Velocity 2010 Google -- Don t Let Third Parties Slow You Down : Third-party Publisher site % Impact Digg services.newsweek.com 14 Digg realtalkny.uproxx.com 9 FriendConnect

More information

導讀 ASP.NET HTML ASP 第一篇 基礎篇第 1 章 認識 ASP.NET ASP.NET ASP.NET ASP.NET ASP.NET 第 2 章 認識 Visual Studio 20 開發環境 Visual Studio 20 Visual Studio 20 第二篇 C# 程式

導讀 ASP.NET HTML ASP 第一篇 基礎篇第 1 章 認識 ASP.NET ASP.NET ASP.NET ASP.NET ASP.NET 第 2 章 認識 Visual Studio 20 開發環境 Visual Studio 20 Visual Studio 20 第二篇 C# 程式 導讀 ASP.NET HTML ASP 第一篇 基礎篇第 1 章 認識 ASP.NET ASP.NET ASP.NET ASP.NET ASP.NET 第 2 章 認識 Visual Studio 20 開發環境 Visual Studio 20 Visual Studio 20 第二篇 C# 程式語言篇第 3 章 C# 程式語言基礎 C# C# 3.0 var 第 4 章 基本資料處理 C# x

More information

Fuzzy Highlight.ppt

Fuzzy Highlight.ppt Fuzzy Highlight high light Openfind O(kn) n k O(nm) m Knuth O(n) m Knuth Unix grep regular expression exact match Yahoo agrep fuzzy match Gais agrep Openfind gais exact match fuzzy match fuzzy match O(kn)

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

网 页 设 计 实 训 教 程 1.4 实 现 过 程 任 务 1: 制 作 诗 词 欣 赏 页 面 步 骤 1: 打 开 编 辑 环 境, 创 建 HTML 文 档 1 1.html, 保 存 到 指 定 位 置, 在 文 档 中 输 入 HTML 文 档 的 基 本 结 构, 代 码 如 下 :

网 页 设 计 实 训 教 程 1.4 实 现 过 程 任 务 1: 制 作 诗 词 欣 赏 页 面 步 骤 1: 打 开 编 辑 环 境, 创 建 HTML 文 档 1 1.html, 保 存 到 指 定 位 置, 在 文 档 中 输 入 HTML 文 档 的 基 本 结 构, 代 码 如 下 : 实 训 一 实 训 一 制 作 诗 词 欣 赏 页 面 1.1 实 训 目 标 了 解 HTML 网 页 基 本 语 法 和 结 构 了 解 HTML 基 本 元 素 掌 握 对 网 页 中 文 字 格 式 化 的 方 法 掌 握 对 网 页 中 段 落 格 式 化 的 方 法 1.2 实 训 内 容 文 字 是 网 页 的 基 础 部 分, 具 体 内 容 包 括 浏 览 器 中 要 显 示 的

More information

Microsoft PowerPoint - HTML(3)

Microsoft PowerPoint - HTML(3) HTML(3) 高雄大學資工系 嚴力行 HTML Tables Purposes of using tables The obvious purpose of arranging information in a table The less obvious - but more widely used - purpose of creating a page layout with the use

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

More information

Professional Ajax Ajax Adaptive Path, LLC Jesse James Garrett Ajax php Garrett WebG

Professional Ajax Ajax Adaptive Path, LLC Jesse James Garrett Ajax   php Garrett WebG 1 何謂 Ajax? 2001 2005World Wide Web Web Google Google Google Labhttp:// labs.google.com Google LabGoogle Suggest Google Maps JavaScript remotingweb Professional Ajax Ajax 2005 2Adaptive Path, LLC Jesse

More information

ebook60-13

ebook60-13 13 H T M L F l a s h J a v a < i m g > 13.1 H T M L A c t i v e X H T M L < i m g > HTML 4.0 < o b j e c t > < / o b j e c t > 13.1.1 H T M L < o b j e c t > c l a s s i d d a t a < p a r a m > 1.

More information

VB控件教程大全

VB控件教程大全 Datagrid DataGrid1.Columns.Remove(0) ' 0 DataGrid1.Columns.Add(0).Caption= ' DataGrod1.Columns(0).DataField= Name ' Adodc1.Refresh DataGrid BackColor Font DataGrid CellPadding HTML CellSpacing HTML Width

More information

( )

( ) Secondary School Physical Fitness Award Scheme Student s Handbook Jointly Organized By Hong Kong Childhealth Foundation Education Department ( ) Secondary School Physical Fitness Award Scheme Student s

More information

C/C++程序设计 - 字符串与格式化输入/输出

C/C++程序设计 - 字符串与格式化输入/输出 C/C++ / Table of contents 1. 2. 3. 4. 1 i # include # include // density of human body : 1. 04 e3 kg / m ^3 # define DENSITY 1. 04 e3 int main ( void ) { float weight, volume ; int

More information

Microsoft Word - 100118002.htm

Microsoft Word - 100118002.htm 100 年 度 11800 電 腦 軟 體 應 用 乙 級 技 術 士 技 能 檢 定 學 科 測 試 試 題 本 試 卷 有 選 擇 題 80 題, 每 題 1.25 分, 皆 為 單 選 選 擇 題, 測 試 時 間 為 100 分 鐘, 請 在 答 案 卡 上 作 答, 答 錯 不 倒 扣 ; 未 作 答 者, 不 予 計 分 准 考 證 號 碼 : 姓 名 : 選 擇 題 : 1. (3)

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

Python a p p l e b e a r c Fruit Animal a p p l e b e a r c 2-2

Python a p p l e b e a r c Fruit Animal a p p l e b e a r c 2-2 Chapter 02 變數與運算式 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.2 2.2.1 2.2.2 2.2.3 type 2.2.4 2.3 2.3.1 print 2.3.2 input 2.4 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 + 2.4.6 Python Python 2.1 2.1.1 a p p l e b e a r c 65438790

More information

基于UML建模的管理管理信息系统项目案例导航——VB篇

基于UML建模的管理管理信息系统项目案例导航——VB篇 PowerBuilder 8.0 PowerBuilder 8.0 12 PowerBuilder 8.0 PowerScript PowerBuilder CIP PowerBuilder 8.0 /. 2004 21 ISBN 7-03-014600-X.P.. -,PowerBuilder 8.0 - -.TP311.56 CIP 2004 117494 / / 16 100717 http://www.sciencep.com

More information

利用ASP访问数据库的操作

利用ASP访问数据库的操作 利用 ASP 访问数据库的操作 一 建立数据库利用 SQL Server 或 Aceess Foxpro 建立一个数据库文件, 其中可以包含多张数据表, 数据表中可以包含一些记录 二 建立数据源一般说来, 以 ASP 访问数据库使用 ODBC 数据源 ODBC 支持多种类型的数据库, 只不过不同类型的数据库要使用对应的驱动程序负责对数据库的具体操作 因此, 要利用 ASP 技术从远程访问服务器上的数据库,

More information

12 41 43 春 新 春 年 貨 年 菜 來 這 買 市 場 超 人 氣 美 食 增 添 豐 富 團 圓 好 滋 味 來 臺 北 過 好 年 2 月 4 日 熱 鬧 登 場 盡 情 揪 團 享 受 11 處 商 圈 新 春 採 買 樂 趣 妝 點 花 樣 生 活 花 開 富 貴 過 好 年 最

12 41 43 春 新 春 年 貨 年 菜 來 這 買 市 場 超 人 氣 美 食 增 添 豐 富 團 圓 好 滋 味 來 臺 北 過 好 年 2 月 4 日 熱 鬧 登 場 盡 情 揪 團 享 受 11 處 商 圈 新 春 採 買 樂 趣 妝 點 花 樣 生 活 花 開 富 貴 過 好 年 最 104 年 1 月 30 日 發 行 / 月 刊 發 行 人 臺 北 市 市 場 處 處 長 王 三 中 臺 北 市 商 業 處 處 長 黃 以 育 出 版 機 關 臺 北 市 市 場 處 臺 北 市 中 正 區 羅 斯 福 路 一 段 8 號 3 樓 http://www.tcma.taipei.gov.tw 臺 北 市 商 業 處 臺 北 市 信 義 區 市 府 路 1 號 北 區 1 樓 http://www.tcooc.taipei.gov.tw

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

WARNING RISK OF ELECTRIC SHOCK DO NOT OPEN AVIS RISQUE DE CHOC ELECTRIQUE NE PAS OUVRIR S3125A Ct-2

WARNING RISK OF ELECTRIC SHOCK DO NOT OPEN AVIS RISQUE DE CHOC ELECTRIQUE NE PAS OUVRIR S3125A Ct-2 DR-UN7 Ct WARNING RISK OF ELECTRIC SHOCK DO NOT OPEN AVIS RISQUE DE CHOC ELECTRIQUE NE PAS OUVRIR S3125A...... Ct-2 1 Ct-3 Ct-4 Ct-5 ...2...3...5...5...6...8...10...10...10...11...11...12...13...14...16...18...18...18...19...19

More information



 蜀 乐 微 信 概 况 : 蜀 乐 微 信 是 上 海 蜀 乐 网 络 科 技 有 限 公 司 打 造 的 专 业 的 微 信 互 动 产 品 平 台, 目 前 已 经 是 国 内 微 信 互 动 领 域 的 领 导 品 牌, 产 品 包 括 微 信 摇 一 摇 抽 奖 微 信 墙 微 信 摇 周 边 二 维 码 电 子 签 到 微 信 电 子 签 到 墙 H5 邀 请 函 页 面 制 作 微 信

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

引 例 3 现 实 生 活 中 的 电 子 商 务 案 例 1 王 小 姐 是 一 家 网 络 公 司 职 员, 现 在 已 经 是 有 八 个 月 身 孕 的 准 妈 妈 由 于 出 行 不 是 很 方 便, 但 是 又 要 购 置 一 些 孕 妇 与 婴 儿 出 生 后 的 物 品 于 是 来

引 例 3 现 实 生 活 中 的 电 子 商 务 案 例 1 王 小 姐 是 一 家 网 络 公 司 职 员, 现 在 已 经 是 有 八 个 月 身 孕 的 准 妈 妈 由 于 出 行 不 是 很 方 便, 但 是 又 要 购 置 一 些 孕 妇 与 婴 儿 出 生 后 的 物 品 于 是 来 第 3 章 WWW 浏 览 器 与 信 息 搜 索 知 识 要 点 WWW 的 相 关 概 念 Web 技 术 结 构 全 球 资 源 定 位 器 的 概 念 主 页 基 本 概 念 能 力 要 点 掌 握 WWW 浏 览 器 的 操 作 学 会 在 网 上 搜 索 信 息 引 例 3 现 实 生 活 中 的 电 子 商 务 案 例 1 王 小 姐 是 一 家 网 络 公 司 职 员, 现 在 已

More information

FileMaker 15 WebDirect 指南

FileMaker 15 WebDirect 指南 FileMaker 15 WebDirect 2013-2016 FileMaker, Inc. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc. FileMaker WebDirect FileMaker, Inc. FileMaker

More information