java中的一些小内容解释,记录下来,防止忘记
程序员文章站
2022-06-15 18:50:59
generate toString:在调试程序时用来查看各属性的值的;$(document.body) //就是获取document对象中的body元素了,应该是和$("body")得到的结果基本相同。但是$(document.body)的效率更高。...
generate toString:在调试程序时用来查看各属性的值的;
$(document.body) //就是获取document对象中的body元素了,应该是和$("body")得到的结果基本相同。但是$(document.body)的效率更高。
$.table.init(options); //初始化表格
//页面全屏时修改表单的高度
$.table.init(options);
$(window).resize(function () {
var height1=$(document.body).height()-205;
$(".fixed-table-container").css("height",height1)
})
$.table.refresh();//新增之后页面自动刷新,更新主页面
给发送功能里面的复选框加title属性(因为文本太长会隐藏):
var obj = $('.layui-form-checkbox span').each(function(){
$(this).attr("title",$(this).text())
});
//表单渲染
form.render();
//遍历检查input框内的name='platform’内容,执行function里面的内容,然后继续寻找下一个,找完之后执行表单渲染内容,return结束寻找及渲染(checkbox为多选框)
$("input:checkbox[name='platform']").each(function() {
this.checked = true
});
form.render("checkbox");
return false;
本文地址:https://blog.csdn.net/W_a_n_g_X_/article/details/107365302