日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) >

开发中 常用 js 记录(一)

發(fā)布時(shí)間:2024/8/26 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 开发中 常用 js 记录(一) 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

(1)獲得URL參數(shù)

function GetQueryString("url參數(shù)名") {
? ? ?var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
? ? ?var r = window.location.search.substr(1).match(reg);
? ? ?if (r != null) return (r[2]);
? ? ?return null;
}

(2)獲得url 中文參數(shù)轉(zhuǎn)碼

? ? ?decodeURI(GetQueryString("url參數(shù)名"))


(3)滑動(dòng)到底部產(chǎn)生事件

$(window).scroll(function() {
? ? ?if ($(window).scrollTop() + $(window).height() == $(document).height()) {


? ? ?}
});

(4)價(jià)格保留兩位小數(shù)

? ? ?(價(jià)格).toFixed(2)


(5)延遲執(zhí)行事件

window.setTimeout(function () {
? ? ?window.location.href = 'www.cnblogs.com/huangenai/';
}, 2500);


(6)點(diǎn)擊事件

$(document).on('touchstart click', ".profile_li",function(e) {


e.preventDefault();

? ?});

?

(7)ajax請(qǐng)求數(shù)據(jù)

$('#btnOK').click(function () {
$.ajax({
? ? ?type: "POST",
? ? ?url: '/Home/index',
? ? ?data: { }, //參數(shù)
? ? ?datatype: "html",
? ? ?success: function (data) {

? ? ?},
? ? ?error: function () {
?
? ? ?}
? ? });
});

?

(8)獲得驗(yàn)證碼倒計(jì)時(shí)效果

<input id="btn" ?value="獲取驗(yàn)證碼"/>

var wait = 60;
document.getElementById("btn").disabled = false;
function time(o) {
? ? ?if (wait == 0) {
? ? ?o.removeAttribute("disabled");
? ? ?o.value = "獲取驗(yàn)證碼";
? ? ?wait = 60;
? ? ?} else {
? ? ?o.setAttribute("disabled", true);
? ? ?o.value = "重新發(fā)送(" + wait + ")";
? ? ?wait--;
? ? ?setTimeout(function() {
? ? ?time(o);
? ? ?},
? ? ?1000);
? ? ?}
}

轉(zhuǎn)載于:https://www.cnblogs.com/huangenai/p/5372359.html

總結(jié)

以上是生活随笔為你收集整理的开发中 常用 js 记录(一)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。