1.隱式建立 html 標籤
<input type="hidden" name="tc_id" value="{{tc_id}}">
複製程式碼
這種方法一般配合ajax,上面的value使用了模板引擎 2.window['data']
window['name'] = "the window object";
複製程式碼
3.使用localStorage,cookie等儲存
window.localStorage.setItem("name", "xiaoyueyue");
window.localStorage.getItem("name")
複製程式碼
特點:cookie,localStorage,sessionStorage,indexDB
從上表可以看到,cookie 已經不建議用於儲存。如果沒有大量資料儲存需求的話,可以使用 localStorage 和 sessionStorage 。對於不怎麼改變的資料儘量使用 localStorage 儲存,否則可以用 sessionStorage 儲存。注意點:儲存 object型別資料,此深拷貝方法會忽略掉函式和 undefined
var obj = {
type: undefined,
text: 'xiaoyueyue',
methord: function () {
alert("I am an methord")
}
}
localStorage.setItem('data', JSON.stringify(obj));
console.log(JSON.parse(localStorage.getItem('data'))); // {text: "xiaoyueyue"}
複製程式碼
4.獲取位址列方法 自己封裝的方法
function parseParam(url) {
var paramArr = decodeURI(url).split("?")[1].split("&"),
obj = {};
for (var i = 0; i < paramArr.length; i++) {
var item = paramArr[i];
if (item.indexOf("=") != -1) {
var tmp = item.split("=");
obj[tmp[0]] = tmp[1];
} else {
obj[item] = true;
}
}
return obj;
}
複製程式碼
2.正規表示式方法
function GetQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]); return null;
}
複製程式碼
5.標籤繫結函式傳參
<!--base-->
<button id="test1" onclick="alert(id)">test1</button>
<!--高階-->
<button id="test" name="123" yue="xiaoyueyue" friend="heizi" onclick="console.log(this.getAttribute('yue'),this.getAttribute('friend'))">test</button>
複製程式碼
this擴充 使用this傳參,在使用art-template中琢磨出來的,再也不用只傳遞一個id拼接成好幾個引數了!happy!
var box = document.createElement("div");
box.innerHTML =
"<button id='1' data-name='xiaoyueyue' data-age='25' data-friend='heizi' onclick='alertInfo(this.dataset)'>點選</button>";
document.body.appendChild(box);
// name,age,friend
function alertInfo(data) {
alert('大家好,我是' + data.name + ', 我今年' + data.age + '歲了,我的好朋友是' + data.friend + ' !')
}
複製程式碼
這裡需要注意一點:儲存的data—含有大寫的單詞 =》這裡會統一轉化為小寫,比如:data-orderId = “2a34fb64a13211e8a0f00050568b2fdd”,在實際取值的時候為 this.dataset.orderid; event 既然可以使用this,那麼在事件當中event.target方法也是可以的: 根據 class 獲取當前的索引值,引數可以為 event物件
var getIndexByClass = function (param) {
var element = param.classname ? param : param.target;
var className = element.classname;
var domArr = Array.prototype.slice.call(document.querySelectorAll('.' + className));
for (var index = 0; index < domArr.length; index++) {
if (domArr[index] === element) {
return index;
}
}
return -1;
},
複製程式碼
6.HTML5 data-* 自定義屬性
<button data-name="xiaoyueyue">點選</button>
複製程式碼
var btn = document.querySelector("button")
btn.onclick = function () {
alert(this.dataset.name)
}
複製程式碼
7.字串傳參 單個引數
var name = 'xiaoyueyue',
age = 25;
var box = document.createElement("div");
box.innerHTML = '<button onclick="alertInfo(\'' + name + '\')">點選</button>';
document.body.appendChild(box);
// name, age
function alertInfo(name, age, home, friend) {
alert("我是" + name)
}
複製程式碼
多參傳遞
var name = 'xiaoyueyue',
age = '25',
home = 'shanxi',
friend = 'heizi',
DQ = """; // 雙引號的超文字標記語言
var params = """ + name + "","" + age + "","" + home + "","" + friend + """;
var params2 = DQ + name + DQ + ',' + DQ + age + DQ + ',' + DQ + home + DQ + ',' + DQ + friend + DQ;
var box = document.createElement("div");
box.innerHTML = "<button onclick='alertInfo(" + params + ")'>點選</button>";
console.log(box)
document.body.appendChild(box);
// name, age,home,friend
function alertInfo(name, age, home, friend) {
alert("我是" + name + ',' + "我今年" + age + "歲了!")
複製程式碼
複雜傳參
var data = [
{
"name": "xiaoyueyue",
"age": "25",
"home": "shanxi",
"friend": "heizi"
}
]
var box = document.createElement("div"),html ='';
for (var i = 0; i < data.length; i++) {
html += "<button id='btn' onclick='alertInfo(id,\"" + data[i].name + "\",\"" + data[i].age + "\",\"" + data[i].home + "\",\"" + data[i].friend + "\")'>點選</button>";
}
box.innerHTML = html;
document.body.appendChild(box);
function alertInfo(id, name, age, home, friend) {
alert("我是 " + name + " , " + friend + " 是我的好朋友")
}
複製程式碼
8.arguments arguments物件是所有(非箭頭)函式中都可用的區域性變數。你可以使用arguments物件在函式中引用函式的引數。它是一個類陣列的物件。
<button onclick="fenpei('f233c7a290ae11e8a0f00050568b2fdd','100','0號 車用柴油(Ⅴ)')">分配</button>
複製程式碼
function fenpei() {
var args = Array.prototype.slice.call(arguments);
alert("我是" + args[2] + "油品,數量為 " + args[1] + " 噸, id為 " + args[0])
}
複製程式碼
9.form表單 藉助form表單,ajax傳遞序列化引數
// form表單序列化,摘自JS高程
function serialize(form) {
var parts = [],
field = null,
i,
len,
j,
optLen,
option,
optValue;
for (i = 0, len = form.elements.length; i < len; i++) {
field = form.elements[i];
switch (field.type) {
case "select-one":
case "select-multiple":
if (field.name.length) {
for (j = 0, optLen = field.options.length; j < optLen; j++) {
option = field.options[j];
if (option.selected) {
optValue = "";
if (option.hasAttribute) {
optValue = (option.hasAttribute("value") ? option.value : option.text);
} else {
optValue = (option.attributes["value"].specified ? option.value : option.text);
}
parts.push(encodeURIComponent(field.name) + "=" + encodeURIComponent(optValue));
}
}
}
break;
case undefined: //fieldset
case "file": //file input
case "submit": //submit button
case "reset": //reset button
case "button": //custom button
break;
case "radio": //radio button
case "checkbox": //checkbox
if (!field.checked) {
break;
}
/* falls through */
default:
//don't include form fields without names
if (field.name.length) {
parts.push(encodeURIComponent(field.name) + "=" + encodeURIComponent(field.value));
}
}
}
return parts.join("&");
}
複製程式碼
列子:
<form id="formData">
<div class="pop-info">
<label for="ordersaleCode">訂單編號:</label>
<input type="text" id="ordersaleCode" name="ordersaleCode" placeholder="請輸入訂單編號" />
</div>
<div class="pop-info">
<label for="extractType">配送方式:</label>
<select id="extractType" name="extractType" class="mySelect">
<option value="0" selected>配送</option>
<option value="1">自提</option>
</select>
</div>
</form>
<button>獲取引數</button>
複製程式碼
document.querySelector("button").onclick = function () {
console.log('param: '+serialize(document.getElementById("formData"))); // param: ordersaleCode=&extractType=0
}
複製程式碼
這裡推薦一下我的前端學習交流群:784783012,裡面都是學習前端的,如果你想製作酷炫的網頁,想學習程式設計。自己整理了一份2018最全面前端學習資料,從最基礎的HTML+CSS+JS【炫酷特效,遊戲,外掛封裝,設計模式】到移動端HTML5的專案實戰的學習資料都有整理,送給每一位前端小夥伴,有想學習web前端的,或是轉行,或是大學生,還有工作中想提升自己能力的,正在學習的小夥伴歡迎加入學習。