日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

开发中 常用 js 记录(一)

發布時間:2024/8/26 编程问答 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 开发中 常用 js 记录(一) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

(1)獲得URL參數

function GetQueryString("url參數名") {
? ? ?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 中文參數轉碼

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


(3)滑動到底部產生事件

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


? ? ?}
});

(4)價格保留兩位小數

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


(5)延遲執行事件

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


(6)點擊事件

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


e.preventDefault();

? ?});

?

(7)ajax請求數據

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

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

?

(8)獲得驗證碼倒計時效果

<input id="btn" ?value="獲取驗證碼"/>

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

轉載于:https://www.cnblogs.com/huangenai/p/5372359.html

總結

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

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。