search
HomeWeb Front-endJS TutorialCompilation of various commonly used JS functions_Basic knowledge

Js gets the page address parameter

Copy code The code is as follows:

function getUrlPara(paraName)
{
var sUrl = location.href;
var sReg = "(?://?|&){1}" paraName "=([^&]*)"
var re = new RegExp(sReg, "gi");
re.exec(sUrl);
return RegExp.$1;
}

Address jump
Copy code The code is as follows:

var pn = $("#gotopagenum").val();//#gotopagenum It is the id attribute of the text box
location.href = "NewList.aspx?pagenum=" pn;//location.href realizes the jump of the client page

Thousandth place
Copy code The code is as follows:

function Convert(money)
{
var s = money; //Get decimal data
s = "";
if (s.indexOf(".") == -1) s = ".00"; //If there is no decimal point, add it at the end decimal point and 00
if (/.d$/.test(s)) s = "0"; //Regular judgment
while (/d{4}(.|,)/.test(s )) //Replace if conditions are met
s = s.replace(/(d)(d{3}(.|,))/, "$1,$2"); //Add every 3rd digit
return s;
}

Judge whether it is a number
Copy code The code is as follows :

function IsNumeric(txt) {
if (txt == "") {
return false;
}

if (txt.indexOf( ",") > 0) {
txt = txt.replace(",", "");
}

if (isNaN(txt)) {
return false;
}
else {
return true;
}
}

Format the number to two decimal places
Copy code The code is as follows:

function changeTwoDecimal_f(x) {
var f_x = parseFloat(x);
if (isNaN(f_x)) {
alert('function:changeTwoDecimal->parameter error');
return false;
}
f_x = Math.round(f_x * 100) / 100;
var s_x = f_x.toString();
var pos_decimal = s_x.indexOf('.');
if (pos_decimal pos_decimal = s_x.length;
s_x = '.';
}
while (s_x.length s_x = '0';
}
return s_x;
}

Js function parseFloat parseInt for numerical operations

js current date yyyy-mm-dd preset query conditions
Copy code The code is as follows:

var now = new Date();
var year = now.getYear();

if (now .getYear() year = now.getYear() 1900;
}

var month = now.getMonth() 1;
var day = now.getDate ();

if (month if (day
$("# txtDate1").val(year.toString() "-" month.toString() "-01");
$("#txtDate2").val(year.toString() "-" month.toString( ) "-" day.toString());

Js gets the timestamp, replacing Guid in some scenarios
Copy code The code is as follows:

function NowTimeCode()
{
var Result="";

var now = new Date() ;

var year = now.getYear();

if (now.getYear() year = now.getYear() 1900;
}

var month = now.getMonth() 1;
var day = now.getDate();
var hour = now.getHours();
var minutes = now.getMinutes( );
var second = now.getSeconds();
var millisecond = now.getMilliseconds();

if (month if (day if (hour if (minutes if (second
if (millisecond millisecond = "00" millisecond;
else
{
if ( millisecond {
millisecond = "0" millisecond;
}
}

Result = year.toString() month.toString() day.toString() hour.toString() minutes.toString() second.toString() millisecond.toString();

return Result;

}
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
快速入门pandas库常用函数指南快速入门pandas库常用函数指南Jan 24, 2024 am 08:05 AM

pandas库是Python中常用的数据处理和分析工具,它提供了丰富的函数和方法,能够轻松地完成数据导入、清洗、处理、分析和可视化等工作。本文将介绍pandas库常用函数的快速入门指南,并附带具体的代码示例。数据导入pandas库通过read_csv、read_excel等函数可以方便地导入各种格式的数据文件。以下是一个示例代码:importpandas

深入剖析Go语言标准库:常用函数和数据结构揭秘深入剖析Go语言标准库:常用函数和数据结构揭秘Jan 30, 2024 am 09:46 AM

探索Go语言标准库:常用函数和数据结构详解引言:Go语言自诞生以来就以其简洁、高效、并发的特点吸引了许多开发者的关注。作为一门现代化的编程语言,Go语言在其标准库中提供了丰富的函数和数据结构,帮助开发者快速构建高性能、可靠的应用程序。本文将详细探索Go语言标准库中一些常用的函数和数据结构,并通过具体的代码示例来加深理解。一、strings包:字符串处理函数G

pandas库有哪些常用函数pandas库有哪些常用函数Nov 22, 2023 pm 01:36 PM

pandas库常用函数有:1、read_csv()和read_excel()函数;2、head()和tail()函数;3、info()函数;4、describe()函数等。详细介绍:1、read_csv()和read_excel()函数,这两个函数用于从CSV和Excel文件中读取数据,它们能将数据读取为数据框对象,方便进一步的数据分析;2、head()和tail()函数等等。

PHP文件操作的常用函数PHP文件操作的常用函数Jun 16, 2023 pm 01:15 PM

PHP是一种广泛使用的开源编程语言,被广泛应用于Web开发领域。在Web开发中,文件操作是必不可少的一环,因此熟练掌握PHP的文件操作函数非常重要。在本文中,我们将介绍一些PHP文件操作中常用的函数。fopen()fopen()函数用于打开文件或URL,并返回文件指针。它有两个参数:文件名和打开方式。打开方式可以是"r"(只读方式)、"w"(写方式)、"a"

Numpy库常用函数大全:快速上手与实践指南Numpy库常用函数大全:快速上手与实践指南Jan 19, 2024 am 08:57 AM

Numpy库是Python中最常用的数据处理库之一,它凭借着其高效、便捷的操作方式广受数据分析人员的喜爱。在Numpy库中,有许多常用的函数可以帮助我们快速、高效地完成数据处理任务。本篇文章将介绍一些常用的Numpy函数,并提供代码示例和实际应用场景,让读者能够更快地上手Numpy库。一、创建数组numpy.array函数原型:numpy.array(obj

PHP 中最常用的函数有哪些?PHP 中最常用的函数有哪些?Apr 18, 2024 pm 02:24 PM

PHP中最常用的函数包括:数据操作:var_dump()、print_r()、array()字符串操作:strlen()、strtoupper()、substr()文件处理:fopen()、fwrite()、fread()错误处理:error_reporting()、trigger_error()、set_error_handler()

精通C语言函数:全面解析常用函数的用法与原理精通C语言函数:全面解析常用函数的用法与原理Feb 20, 2024 am 09:28 AM

精通C语言函数:全面解析常用函数的用法与原理摘要:C语言中的函数是实现代码复用和模块化的重要工具,也是程序设计中不可或缺的一部分。本文将全面解析常用函数的用法与原理,包括函数的定义、调用和返回值,以及常见函数的使用示例,帮助读者更好地理解和掌握C语言函数的使用。一、函数的定义和调用1.1函数的定义C语言中,函数的定义由返回类型、函数名、参数列表和函数体组成

PHP常用函数库的应用技巧PHP常用函数库的应用技巧Jun 16, 2023 am 09:49 AM

PHP是一种功能强大的编程语言,常被用于Web应用程序的开发。在PHP中,有许多常用的函数库,这些函数库可以帮助开发者轻松地完成各种操作。本文将介绍几种常用函数库及其应用技巧。1.字符串函数库字符串函数库一般用于字符串的操作,包括字符串长度、字符串连接、字符串截取等。以下是几个常用的字符串函数:strlen()函数用于获取字符串长度,例如:$str=&q

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

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use