摘要: html代码 阅读全文
posted @ 2019-07-17 15:03 波神丶 阅读(870) 评论(0) 推荐(0)
摘要: html代码 阅读全文
posted @ 2019-07-13 10:39 波神丶 阅读(396) 评论(0) 推荐(0)
摘要: thymeleaf是严格遵循w3c的标准的。在thymeleaf的js中使用&,<,>等符号时会产生这种问题,即使转义也不行,解决方法:将你的js代码包裹在<![CDATA[ ]]>之中即可。 在javaScript中使用表达式 给js变量赋值 表达式同样可以在javascript中使用。先用属性声 阅读全文
posted @ 2019-07-11 16:06 波神丶 阅读(1630) 评论(0) 推荐(0)
摘要: html JS代码 阅读全文
posted @ 2019-07-10 09:36 波神丶 阅读(933) 评论(0) 推荐(0)
摘要: html代码 阅读全文
posted @ 2019-07-10 09:21 波神丶 阅读(3274) 评论(0) 推荐(0)
摘要: //回车 $("#title").keydown(function (e) { if (e.keyCode == 13) { $("#searchBut").trigger("click"); } }); //刷新 $("#refresh").click(function () { $('#brandListTab').bo... 阅读全文
posted @ 2019-07-10 09:08 波神丶 阅读(2630) 评论(0) 推荐(0)
摘要: //打开授权模态框 function givePower(id) { //通过uniqueId 获取行数据 var rows = $('#parameterTab').bootstrapTable('getRowByUniqueId', id); $("#roleNameTree").val(rows.roleName); //展示角色模态框 $('#s... 阅读全文
posted @ 2019-07-05 19:04 波神丶 阅读(1430) 评论(7) 推荐(0)
摘要: //打开车辆操作模态框 加载开关数据 function control(id) { //通过uniqueId 获取行数据 var rows = $('#vehicleInfoTab').bootstrapTable('getRowByUniqueId', id); $("#id").val(rows.id); $("#gpsNo").val(rows.gpsN... 阅读全文
posted @ 2019-07-04 15:59 波神丶 阅读(1273) 评论(0) 推荐(0)