摘要: javascript 1、javascript的简介 * 是基于对象和事件驱动的语言,应用于客户端 - 基于对象: ** 提供了很多对象,可以直接拿来使用 - 事件驱动 ** html做网页静态效果,javascript做动态效果 - 客户端:专门指浏览器 * js的特点 (1)交互性 - 信息的动 阅读全文
posted @ 2020-09-26 21:20 一玎 阅读(105) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> </style> </head> <body> <script type="text/javascript"> document.write("<table border='1' 阅读全文
posted @ 2020-09-26 19:20 一玎 阅读(132) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> </style> </head> <body> <script type="text/javascript"> // if 语句 /* var a = 5; if(a==5){ a 阅读全文
posted @ 2020-09-26 17:06 一玎 阅读(83) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> </style> </head> <body> <script type="text/javascript"> //定义一个字符串 var str = "abc"; // aler 阅读全文
posted @ 2020-09-26 17:04 一玎 阅读(101) 评论(0) 推荐(0)
摘要: (推荐系统) 推荐系统概述 2020-08 推荐系统 推荐系统概述 一.推荐系统的背景与价值 1.推荐系统的应用场景:网易音乐、电商推荐、新闻推荐 个性化推荐:在面向用户的互联网产品中发挥着极其重要的作用。 2.推荐系统的价值 在面向用户的互联网产品中,代替用户评估其从未看过、接触过和使用过的物品, 阅读全文
posted @ 2020-09-26 17:03 一玎 阅读(862) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> </style> </head> <body> <script type="text/javascript" src="弹窗b.js"> </script> </body> </h 阅读全文
posted @ 2020-09-26 17:00 一玎 阅读(105) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> </style> </head> <body> <script type="text/javascript"> // 向页面弹出一个框,显示内容 alert("aaa"); </s 阅读全文
posted @ 2020-09-26 16:59 一玎 阅读(182) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> #tex21{ position:absolute; top:30; left:30; color:purple; } </style> </head> <body> <div i 阅读全文
posted @ 2020-09-26 15:36 一玎 阅读(121) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> #imgtex11{ width:400px; height:300px; border:2px dashed orange; } #image11{ float:left; } 阅读全文
posted @ 2020-09-26 15:31 一玎 阅读(207) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> div{ width:200px; height:150px; border:2px solid purple; } #div51{ background-color:blue; 阅读全文
posted @ 2020-09-26 15:30 一玎 阅读(109) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> div{ width:200px; height:150px; border:2px solid purple; } #div51{ background-color:blue; 阅读全文
posted @ 2020-09-26 15:28 一玎 阅读(84) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> div{ width:200px; height:150px; border:2px solid purple; } #div41 { float: left; } #div42{ 阅读全文
posted @ 2020-09-26 15:25 一玎 阅读(169) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> div{ border:2px solid blue; } #div32{ margin:20px; } #div33{ margin-left:30px; } </style> 阅读全文
posted @ 2020-09-26 15:23 一玎 阅读(90) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> div{ width:200px; height:100px; border:2px solid blue; } #div22{ padding:20px; } #div23{ p 阅读全文
posted @ 2020-09-26 15:21 一玎 阅读(96) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> div{ width:200px; height:100px; border:2px solid blue; } #div12{ border-right:2px dashed y 阅读全文
posted @ 2020-09-26 15:19 一玎 阅读(108) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> /*原始状态*/ a:link { background-color:green; } /*悬停状态*/ a:hover { background-color:pink; } /* 阅读全文
posted @ 2020-09-26 15:18 一玎 阅读(118) 评论(0) 推荐(0)
摘要: <html> <head> <title>css扩展选择器</title> <style> <!-- div p{ background-color:green; } --> div,p{ background-color:orange; } </style> </head> <body> <!-- 阅读全文
posted @ 2020-09-26 15:16 一玎 阅读(121) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> div{ background-color:yellow; } .first{ background-color:green; } #second{ background-colo 阅读全文
posted @ 2020-09-26 15:14 一玎 阅读(174) 评论(0) 推荐(0)
摘要: <html> <head> <title>HTML示例</title> <style type="text/css"> div{ background-color:red; } p{ background-color:orange; } /* i.first{ background-color:bl 阅读全文
posted @ 2020-09-26 15:12 一玎 阅读(100) 评论(0) 推荐(0)
摘要: <html> <head> <title>css和html的结合方式</title> <link rel="stylesheet" type="text/css" href="div.css"/> </head> <body> <div>杨家有女初长成,养在深闺人未识。</div> </body>< 阅读全文
posted @ 2020-09-26 15:11 一玎 阅读(84) 评论(0) 推荐(0)
摘要: <html> <head> <title>css和html的结合方式3</title> <style type="text/css"> @import url(div.css); </style> </head> <body> <div>金屋妆成娇侍夜,玉楼宴罢醉和春。</div> </body>< 阅读全文
posted @ 2020-09-26 15:10 一玎 阅读(118) 评论(0) 推荐(0)
摘要: <html> <head> <title>html和css的结合方式2</title> <style type="text/css"> div { background-color:blue; color:grey; } </style> </head> <body> <div>春宵苦短日高起,从此 阅读全文
posted @ 2020-09-26 15:09 一玎 阅读(106) 评论(0) 推荐(0)
摘要: <html> <head> <title>html和css的结合方式1</title> <style type="text/css"> div{ background-color:black; color:white; } </style> </head> <body> <div style="ba 阅读全文
posted @ 2020-09-26 15:07 一玎 阅读(106) 评论(0) 推荐(0)
摘要: CSS笔记 1、css的简介 * css(Cascading Style Sheets):层叠样式表 ** 层叠:一层一层的 ** 样式表:很多的属性和属性值 * 使页面显示效果更好,解决html代码对样式定义的重复,提高了样式代码的可维护性 * CSS将页面内容和显示样式进行分离2、css和htm 阅读全文
posted @ 2020-09-26 15:06 一玎 阅读(111) 评论(0) 推荐(0)