Home Backend Development PHP Tutorial PHP basic study notes javascript (5)

PHP basic study notes javascript (5)

Aug 08, 2016 am 09:28 AM
event nbsp

字符串中的特殊字符:

在js中,双引号字符串中的双引号内容和单引号字符串中的单引号内容都必须进行转移,形式如下:

var str1 = "my mother say:\"don't speak with stranger\". ";

var str2 = 'my mother say:"don\'t speak with stranger". ';

js中的常用转义字符有:

<span>“        ?    \”
‘        ?    \’
回车符     ? \r
换行符    ? \n
tab符    ? \t
\        ? \\
注意: 回车符,换行符,空格和tab符其实也是跟a,b,c,d,和’,  “,  $  </span>& 等等符号“平等并列”的符号。
Copy after login

时间日期(Date)对象:

用于表示时间日期数据的对象。一个时间日期对象中包括了有关时间日期的各项具体信息,比如年,月,日,时分秒,毫秒,星期。

定义一个时间日期对象有以下几种形式:

    d1 = <span>new</span> Date();    <span>//</span><span>定义一个表示“当前时间”的日期对象, </span>
    d2 = <span>new</span> Date(“<span>2013</span>/<span>9</span>/<span>25</span> <span>11</span>:<span>18</span>:<span>19</span><span>”);    用一个字符串来定义一个指定时间(时刻)的日期对象
    d3 </span>= <span>new</span> Date(<span>2013</span>, <span>9</span>, <span>25</span>, <span>11</span>, <span>18</span>, <span>19</span><span>); 用多个(至少3个)数字来定义一个指定时间的日期对象
    d4 </span>= <span>new</span> Date(<span>2324624252312</span>);    用一个数字来定义个指定时间的日期对象。
Copy after login

此数字代表的是从1970年1月1日午夜0点0分0秒(甚至0毫米)开始算起所经历过的毫秒数。注意,一秒等于1000毫秒。——实际上,我们可以理解为:“时间”这种数据,在js中,其实其本质上只是存储了一个数字。如果该数值为负值,则表示往前推算。实际上,据此,时间是可以进行加减计算的。

这个时间点通常认为是计算机世界的“时间起点/原点”。

 时间对象的常用方法:

v1 =<span>  d1.toLocaleString();获得时间为“本地表示法”
    v1 </span>=<span>  d1.getTime();    获得一个时间的“毫米数”——从时间原点开始算起。
以下是获取时间中的某项数据值:
    v1 </span>=  d1.getFullYear();    <span>//</span><span>获得年数——是一个数字,下同</span>
    v1 =  d1.getMonth();    <span>//</span><span>获得月数    ——注意:此数字是从0开始算起的,即只能是:0-11</span>
    v1 =  d1.getDate();    <span>//</span><span>获得日期数</span>
    v1 =  d1.getDay();        <span>//</span><span>获得星期数</span>
    v1 =  d1.getHours();    <span>//</span><span>获得小时数</span>
    v1 =  d1.getMinutes();    <span>//</span><span>获得分钟数</span>
    v1 =  d1.getSeconds();    <span>//</span><span>获得秒数</span>
    v1 =  d1.getMilliseconds();<span>//</span><span>获得毫秒数</span>
Copy after login

以下是设置时间中的某项数据值:

d1.setFullYear( n );        <span>//</span><span>将d1这个时间对象的年份数设置为n这个数——即修改了其年份,下同。</span>
    d1.setMonth( n  );        <span>//</span><span>设置月份数</span>
d1. setDate(n  );        <span>//</span><span>设置日期数</span>
    d1. setDay(n  );        <span>//</span><span>设置星期数</span>
    d1. setHours(n  );        <span>//</span><span>设置小时数</span>
    d1. setMinutes(n  );    <span>//</span><span>设置分钟数</span>
    d1. setSeconds(n  );    <span>//</span><span>设置秒数</span>
    d1. setMilliseconds(n  );<span>//</span><span>设置毫秒数</span>
Copy after login

网页对象介绍

第一个重要观念:在html文件中的每个标签都是一个对象。

<span>var</span> obj1 =<span> {
                    name:”小花”,
                    age:</span><span>18</span><span>,
                    zuofan: functoin (){……},
                    xiyi: function(){……}
}
    </span><span>var</span> v1 =<span> obj1.age;
    alert( v1 );
    obj1.age </span>= <span>19</span>;    <span>//</span><span>过年了,增加了一岁——修改了obj1这个对象的age这个属性的值。</span>
    obj1.name = “大花”;
Copy after login

 获取网页标签对象的方式:

         var  obj1 = document.getElementById(“id名”);

操作对象的标签属性:

         获取: var v1 = obj1.标签属性名;

         赋值: obj1.标签属性名 = 某值;

操作对象的样式属性:

         获取:var v1 =  obj1.style.样式属性名;——其实这种方式只能获取其“行内样式”

         赋值:obj1.style.样式属性名 = 某值;

获取网页标签对象的方式:

         var  obj1 = document.getElementById(“id名”);

操作对象的标签属性:

         获取: var v1 = obj1.标签属性名;

         赋值: obj1.标签属性名 = 某值;

操作对象的样式属性:

         获取:var v1 =  obj1.style.样式属性名;——其实这种方式只能获取其“行内样式”

         赋值:obj1.style.样式属性名 = 某值;

事件初步

简单说来,事件就是“动作”,也就是用户所在的某种操作,比如:点击,鼠标移动,双击,。。。。。。

先回顾与加强js的“定义”:js是一门基于对象的事件驱动的脚本语言。

事件有哪些:

<span>    鼠标事件:
        onclick: 
        onmouseover:
        onmouseout:
        ondblclick:    双击事件
        onmousedown:      鼠标按下去的时候发生(注意此时鼠标还没有抬起来)
        onmouseup:        鼠标抬起来的时候发生
        onmousemove:    鼠标移动的时候发生——移动无处不在。</span>
Copy after login

<span>键盘事件:
        onkeypress:    按键点击一次发生。
        onkeydown:    按键按下去的时候发生
        onkeyup:        按键抬起来的时候发生</span>
Copy after login

<span>表单事件:
        onsubmit    :    当一个表单正要“提交”的时候发生
        onfocus:        当一个表单项“获得焦点”的时候发生。
        onblur:        当一个表单项“失去焦点”的时候发生
        onchange:    当一个表单项的数据发生改变的时候——通常只用于select标签的选项改变。</span>
Copy after login

<span>其他:
        onload:        当网页“一加载成功”的时候发生,也就是网页打开的时刻——onload在一个页面上只能出现一次。  onload只能写在body标签上,或者要么就不在标签中写,而是在脚本中使用window.onload的实线。</span>
Copy after login

小结:事件随时发生,无处不在,只在于我们想要在哪个对象上使用哪个事件来完成什么工作。

其基本的代码模式为:

    <标签名 &hellip;&hellip;  on事件名=&rdquo;函数名f1();&rdquo; >……</标签名>
    <script><span>
        function f1(){
            </span><span>//</span><span>这里就是我们要做的工作!!!!!</span>
<span>}
    </span></script>
Copy after login

则其基本含义是: 某个对象发生什么事件的时候会去调用某个函数以完成某种任务。

event对象

         event是一个浏览器内部的对象(注意,不是网页标签对象),它代表事件发生的时候跟事件有关的相关信息的集合体(对象就是信息的集合体)——它只在事件发生的时候存在!

         event通常就只用于获取在事件发生的时候的有关信息,比如:鼠标该时刻的坐标位置(x和y),是哪个网页对象发生了该事件,发生事件的时候是哪个鼠标按键触发的,或哪个键盘上的键。以上信息由以下几个event属性来获取:

         event.clientX   ——获取事件发生的时候鼠标的x坐标位置

         event.clientY   ——获取事件发生的时候鼠标的y坐标位置

         event.target    ——获取事件发生的时候的那个标签对象(适用于FF)——类似getElementById获取的对象

         event.srcElement    ——获取事件发生的时候的那个标签对象(适用于IE)——类似getElementById获取的对象

         ——事件发生的时候的那个标签对象通常被称为“事件源”。

         event.keyCode                   ——键盘事件发生的时候的按键的键值——键盘上每个键都对应一个数字值。

<span>this和event的使用对比:
    </span><标签名1  on事件名=&rdquo;函数名f1(<span>this</span>)&rdquo;  >。。。。。</标签名1>
    <标签名2  on事件名=&rdquo;函数名f2(<span>event</span>)&rdquo;  >。。。。。</标签名2>
    <script><span>
        function f1 ( obj )
        {
            </span><span>//</span><span>在此范围内,obj代表的就是“标签名1”这个对象,类似使用getElementById获得的对象</span>
<span>}
function f2 ( evt )
        {
            </span><span>//</span><span>在此范围内,evt代表的是事件发生的时候的event对象。
            </span><span>//</span><span>这里使用evt,基本上也就是使用其以下属性(根据需要取用):</span>
            <span>var</span> v1 = evt.clientX;    <span>//</span><span>获得鼠标当时的x坐标</span>
            <span>var</span> v2 = evt.clientY;    <span>//</span><span>获得鼠标当时的y坐标</span>
            <span>var</span> v3 = evt.keyCode;    <span>//</span><span>获得键盘的按键值(只对键盘事件有效)</span>
            <span>var</span> v4 = evt.target;        <span>//</span><span>获得事件源对象,IE是:evt.srcElement;</span>
<span>}
    </span></script>
Copy after login

以上就介绍了php基础学习笔记javascript(5),包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Solution: Your organization requires you to change your PIN Solution: Your organization requires you to change your PIN Oct 04, 2023 pm 05:45 PM

The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now

How to adjust window border settings on Windows 11: Change color and size How to adjust window border settings on Windows 11: Change color and size Sep 22, 2023 am 11:37 AM

Windows 11 brings fresh and elegant design to the forefront; the modern interface allows you to personalize and change the finest details, such as window borders. In this guide, we'll discuss step-by-step instructions to help you create an environment that reflects your style in the Windows operating system. How to change window border settings? Press + to open the Settings app. WindowsI go to Personalization and click Color Settings. Color Change Window Borders Settings Window 11" Width="643" Height="500" > Find the Show accent color on title bar and window borders option, and toggle the switch next to it. To display accent colors on the Start menu and taskbar To display the theme color on the Start menu and taskbar, turn on Show theme on the Start menu and taskbar

How to change title bar color on Windows 11? How to change title bar color on Windows 11? Sep 14, 2023 pm 03:33 PM

By default, the title bar color on Windows 11 depends on the dark/light theme you choose. However, you can change it to any color you want. In this guide, we'll discuss step-by-step instructions for three ways to change it and personalize your desktop experience to make it visually appealing. Is it possible to change the title bar color of active and inactive windows? Yes, you can change the title bar color of active windows using the Settings app, or you can change the title bar color of inactive windows using Registry Editor. To learn these steps, go to the next section. How to change title bar color in Windows 11? 1. Using the Settings app press + to open the settings window. WindowsI go to "Personalization" and then

OOBELANGUAGE Error Problems in Windows 11/10 Repair OOBELANGUAGE Error Problems in Windows 11/10 Repair Jul 16, 2023 pm 03:29 PM

Do you see "A problem occurred" along with the "OOBELANGUAGE" statement on the Windows Installer page? The installation of Windows sometimes stops due to such errors. OOBE means out-of-the-box experience. As the error message indicates, this is an issue related to OOBE language selection. There is nothing to worry about, you can solve this problem with nifty registry editing from the OOBE screen itself. Quick Fix – 1. Click the “Retry” button at the bottom of the OOBE app. This will continue the process without further hiccups. 2. Use the power button to force shut down the system. After the system restarts, OOBE should continue. 3. Disconnect the system from the Internet. Complete all aspects of OOBE in offline mode

How to enable or disable taskbar thumbnail previews on Windows 11 How to enable or disable taskbar thumbnail previews on Windows 11 Sep 15, 2023 pm 03:57 PM

Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another disadvantage is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. However, if your hardware specs can handle it and you like the preview, you can enable it. How to enable taskbar thumbnail preview in Windows 11? 1. Using the Settings app tap the key and click Settings. Windows click System and select About. Click Advanced system settings. Navigate to the Advanced tab and select Settings under Performance. Select "Visual Effects"

Display scaling guide on Windows 11 Display scaling guide on Windows 11 Sep 19, 2023 pm 06:45 PM

We all have different preferences when it comes to display scaling on Windows 11. Some people like big icons, some like small icons. However, we all agree that having the right scaling is important. Poor font scaling or over-scaling of images can be a real productivity killer when working, so you need to know how to customize it to get the most out of your system's capabilities. Advantages of Custom Zoom: This is a useful feature for people who have difficulty reading text on the screen. It helps you see more on the screen at one time. You can create custom extension profiles that apply only to certain monitors and applications. Can help improve the performance of low-end hardware. It gives you more control over what's on your screen. How to use Windows 11

10 Ways to Adjust Brightness on Windows 11 10 Ways to Adjust Brightness on Windows 11 Dec 18, 2023 pm 02:21 PM

Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible

How to turn off private browsing authentication for iPhone in Safari? How to turn off private browsing authentication for iPhone in Safari? Nov 29, 2023 pm 11:21 PM

In iOS 17, Apple introduced several new privacy and security features to its mobile operating system, one of which is the ability to require two-step authentication for private browsing tabs in Safari. Here's how it works and how to turn it off. On an iPhone or iPad running iOS 17 or iPadOS 17, Apple's browser now requires Face ID/Touch ID authentication or a passcode if you have any Private Browsing tab open in Safari and then exit the session or app to access them again. In other words, if someone gets their hands on your iPhone or iPad while it's unlocked, they still won't be able to view your privacy without knowing your passcode

See all articles