search
HomeWeb Front-endJS TutorialBasic analysis of js writing method_javascript skills

var a=false;
!a&&alert("hi");
Explanation: a is true before execution continues, so hi will pop up
var a=a||"hi";
Explanation When a is false, execution will continue. When a is true, this statement will be jumped out, so you can copy the default value through this method
Not all languages ​​​​are handled this way, such as PHP
$a= @$a||"hi";
echo $a;//1
php assigns the value after (@$a||"hi")...
$a=true ;
!$a&&echo "hi";
Report error directly: syntax error, unexpected T_ECHO
About prototype
In many cases, when I see prototype, I think of only objects.
var add= function(){alert("b");}
add.prototype.a = function () {alert("hi");}
new add.prototype.a;
First reaction, An error may be reported, but in fact, when there is no production object, you can directly call the static method through add.prototype.a
JS is quite misleading, cough
Selector problem:
Sometimes you need to select the child nodes under a node and use childNodes to get the value FIREFOX. The difference in IE is very frustrating
document.getElementsByTagName("head")[0].getElementsByTagName("script")[0];
The above method works well when used in the head tag stage, but not so useful when used in other areas
I think it’s better to use a class name

Copy code The code is as follows:

function getclassnode(classname,doc){
doc=doc||document;
var node=[] ,i=0,j=0,t;
var allnode=doc.getElementsByTagName("*");
while(t=allnode[i]){
if(RegExp(classname).test (t.className)){
node[j]=t;
j ;
}
i ;
}
return node;
}

Since using JQ, I have almost forgotten all the native JS operations. I review it occasionally, and it feels very troublesome and depressing.
I would like to add some things that I need to pay attention to in JS that I discovered today. If a JS has been After being imported into the current document, even if the imported node is removed, the variables, functions, etc. defined through the imported JS file are still valid because they have been loaded into the current document environment, as shown in the following code:
Copy code The code is as follows:

document.getElementsByTagName("head")[0].removeChild(document.getElementsByTagName("head")[0] .getElementsByTagName("script")[0]);
Statement
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
Java中回调函数的基本语法与应用Java中回调函数的基本语法与应用Jan 30, 2024 am 08:12 AM

Java回调函数的基本写法和使用方法引言:在Java编程中,回调函数是一种常见的编程模式,通过回调函数,可以将某个方法作为参数传递给另一个方法,从而实现方法的间接调用。回调函数的使用,在事件驱动、异步编程和接口实现等场景中非常常见。本文将介绍Java回调函数的基本写法和使用方法,并提供具体的代码示例。一、回调函数的定义回调函数是一种特殊的函数,它可以作为参数

MyBatis中小于号的写法详解MyBatis中小于号的写法详解Feb 21, 2024 pm 08:36 PM

MyBatis中小于号的写法详解MyBatis是一个优秀的持久层框架,广泛应用于Java开发中。在使用MyBatis进行数据库操作的过程中,我们经常会用到小于号(

学习JSP注释的语法和使用场景学习JSP注释的语法和使用场景Jan 31, 2024 pm 03:39 PM

JSP注释的写法JSP注释有两种类型:单行注释和多行注释。单行注释单行注释以结束。注释的内容不会被解析,因此不会出现在输出中。例如:多行注释多行注释以/*开始,以*/结束。注释的内容不会被解析,因此不会出现在输出中。例如:/*这是一条多行注释*/JSP注释的应用场景

介绍C语言中的指数函数表达式介绍C语言中的指数函数表达式Feb 18, 2024 pm 01:11 PM

C语言中指数函数表达式的写法介绍及代码示例什么是指数函数指数函数是数学中一类常见的函数,可以表示为f(x)=a^x的形式,其中a为底数,x为指数。指数函数主要用于描述指数增长或指数衰减的情况。指数函数的代码示例在C语言中,我们可以使用数学库中的pow()函数来计算指数函数,下面是一个示例程序:#include

PHP数组写法详解:探究5种不同的方式PHP数组写法详解:探究5种不同的方式Mar 13, 2024 pm 03:09 PM

PHP数组作为一种重要的数据结构,在实际开发中被广泛使用。掌握不同的数组写法可以帮助开发人员更灵活高效地处理数据。本文将详细探究PHP中5种不同的数组写法,并给出具体的代码示例,以帮助读者更加深入地理解。一、索引数组索引数组是PHP中最基础的数组类型,它使用数字作为键值。下面是一个简单的索引数组示例:$fruits=["apple",

MyBatis中大于等于写法详解MyBatis中大于等于写法详解Feb 23, 2024 pm 07:18 PM

MyBatis是一个流行的Java持久层框架,广泛应用于各种Java项目中。在使用MyBatis进行数据库操作时,经常会遇到需要查询大于等于某个值的情况。本文将详细介绍在MyBatis中如何实现大于等于查询,并提供具体的代码示例。首先,让我们以一个实际的需求场景作为例子:假设我们有一个名为User的数据表,包含字段id和age,我

PHP数组写法全解析:5种写法一网打尽PHP数组写法全解析:5种写法一网打尽Mar 13, 2024 pm 07:09 PM

PHP是一种广泛应用于Web开发的脚本语言,它提供了丰富的数组操作功能,能够灵活地存储和处理数据。本文将全面解析PHP数组的5种常见写法,带来具体的代码示例,让您一网打尽,深入了解PHP数组的灵活运用。一、索引数组写法:索引数组是PHP中最简单的数组类型,它使用数字作为键名,按照顺序存储数据。索引数组的写法非常简单,直接使用[]或array()语法即可。$i

PHP数组写法大揭秘:5种方法轻松掌握PHP数组写法大揭秘:5种方法轻松掌握Mar 13, 2024 am 10:33 AM

PHP数组是一种非常常用的数据结构,它能够存储多个值,并通过键值对的形式进行访问。掌握不同的数组写法能够让我们更加灵活地处理数据,在开发中起着至关重要的作用。今天我们就来揭秘PHP数组的5种写法,并附上具体的代码示例,帮助大家更好地理解和掌握这些方法。方法一:使用array()函数//创建一个包含多个元素的数组$fruits=array("

See all articles

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

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft