<html>
<head>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
will0719 發表在 痞客邦 留言(0) 人氣(1)

<html>
<head>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
will0719 發表在 痞客邦 留言(0) 人氣(0)

<!DOCTYPE html >
< html >
< head>
<title>加法運算器</title>
<script>
function add() {
var a = parseInt(document.getElementById('a').value);
var b = parseInt(document.getElementById('b').value);
document.getElementById('result').value = a+b ;
}
</script>
< /head>
< body>
<input id="a" type="text" />+<input id="b" type="text" />
<button onclick="add()" >=</button>
<output id="result"></output>
< /body>
< /html>
will0719 發表在 痞客邦 留言(0) 人氣(0)

1.文字檔改HTML格式
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=BIG5">
<title>第一支javaScript</title>
</head>
<body>
<h2>document.write用法</h2>
<Script type ="text/javascript">
document.write("Hello world!!");
</Script>
</body>
</html>
will0719 發表在 痞客邦 留言(0) 人氣(0)
will0719 發表在 痞客邦 留言(0) 人氣(0)
will0719 發表在 痞客邦 留言(0) 人氣(0)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.OleDb;
using System.IO;
will0719 發表在 痞客邦 留言(0) 人氣(0)
package test;
import java.sql.Connection;
will0719 發表在 痞客邦 留言(0) 人氣(2)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
will0719 發表在 痞客邦 留言(0) 人氣(3)
using System;
using System.Collections.Generic;
will0719 發表在 痞客邦 留言(0) 人氣(0)