Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Publishing AJAX and PHP - part 5
Đang chuẩn bị liên kết để tải về tài liệu:
Publishing AJAX and PHP - part 5
Quốc Hòa
93
10
pdf
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Client-Side Techniques with Smarter JavaScript Product Name Airplane Big car 3. Create a file called csstest.js and write the following code in it: // Change table style to style 1 function setStyle1() { // obtain references to HTML elements oTable = document.getElementById("table"); oTableHead = document.getElementById("tableHead"); oTableFirstLine = document.getElementById("tableFirstLine"); oTableSecondLine = document.getElementById("tableSecondLine"); // set styles oTable.className = "Table1"; oTableHead.className = "TableHead1"; oTableFirstLine.className = "TableContent1"; oTableSecondLine.className = "TableContent1"; } // Change table style to style 2 function. | Client-Side Techniques with Smarter JavaScript body table id table tr th id tableHead Product Name th tr tr td id tableFirstLine Ai rplane td tr tr td id tableSecondLine Big car td tr table br input type button value Set Style 1 onclick setStyle1 input type button value Set Style 2 onclick setStyle2 body html 3. Create a file called csstest.js and write the following code in it Change table style to style 1 function setStyle1 obtain references to HTML elements oTable document.getElementByld table oTableHead document.getElementByld tableHead oTableFirstLine document.getElementByld tableFirstLine oTableSecondLine document.getElementByld tableSecondLine set styles oTable.className Table1 oTableHead.className TableHead1 oTableFirstLine.className TableContent1 oTableSecondLine.className TableContent1 Change table style to style 2 function setStyle2 obtain references to HTML elements oTable document.getElementByld table oTableHead document.getElementByld tableHead oTableFirstLine document.getElementByld tableFirstLine oTableSecondLine document.getElementByld tableSecondLine set styles oTable.className Table2 oTableHead.className TableHead2 oTableFirstLine.className TableContent2 oTableSecondLine.className TableContent2 4. Finally create the CSS file styles .css .Table1 border DarkGreen 1px solid background-color LightGreen .TableHead1 font-family Verdana Arial font-weight bold 40 Chapter 2 font-size 10pt .TableContentl font-family Verdana Arial font-size 10pt .Table2 border DarkBlue lpx solid background-color LightBlue .TableHead2 font-family Verdana Arial font-weight bold font-size 10pt .TableContent2 font-family Verdana Arial font-size 10pt 5. Load http localhost ajax foundations css css .html in your web browser and test that your buttons work as they should. Figure 2.5 Table with CSS and JavaScript What Just Happened Your styles .css file contains two sets of styles that can be applied to the table in csstest.html. When the user clicks one of the Set Style buttons .
TÀI LIỆU LIÊN QUAN
Publishing AJAX and PHP - part 26
Publishing AJAX and PHP - part 1
Publishing AJAX and PHP - part 2
Publishing AJAX and PHP - part 3
Publishing AJAX and PHP - part 4
Publishing AJAX and PHP - part 5
Publishing AJAX and PHP - part 6
Publishing AJAX and PHP - part 7
Publishing AJAX and PHP - part 8
Publishing AJAX and PHP - part 9
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.