//确保DOM完全加载后再执行
|
//document.addEventListener('DOMContentLoaded', function () {
|
// initFunction();
|
//});
|
//$(document).on('click', '.layui-btn', function () {
|
// initFunction();
|
//});
|
|
document.addEventListener('click', function (event) {
|
Btn();
|
});
|
|
function Lable() {
|
var Lable = document.querySelectorAll('.layui-form-label').length;
|
for (var i = 0; i < Lable; i++) {
|
console.log(document.querySelectorAll('.layui-form-label')[i].innerHTML);
|
}
|
for (var i = 0; i < Lable; i++) {
|
document.querySelectorAll('.layui-form-label')[i].innerHTML = document.querySelectorAll('.layui-form-label')[i].textContent + "1";
|
}
|
}
|
function initFunction() {
|
Btn();
|
Lable();
|
}
|
|
function Btn() {
|
var Btn = document.querySelectorAll('button>text').length;
|
for (var i = 0; i < Btn; i++) {
|
console.log(document.querySelectorAll('button>text')[i].innerHTML);
|
}
|
for (var i = 0; i < Btn; i++) {
|
document.querySelectorAll('button>text')[i].innerHTML = document.querySelectorAll('button>text')[i].textContent + "1";
|
}
|
}
|