• $(document).ready(function() {。。。。。})里面的所有的代码都不执行(不执行初始化脚本)


    原因在于自己在编写页面的时候,<script>....</script>的位置放错了,应该放到<head></head>之间,否则的话,会不起作用

    <%@ page contentType="text/html; charset=utf-8" %>
    <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
    <html>
    <head>
    <title>订单添加</title>
    <meta http-equiv="Content-Type" content="default"  name="decorator">
    </head>
    <script type="text/javascript">

    $(document).ready(function(){
    XXXXXX........里面的代码不会执行
    });
    </script>

    <body> <ul class="nav nav-tabs">
    <li><a href="${ctx}/sys/order/list">订单列表</a></li>
    <li class="active"><a href="${ctx}/sys/order/form?orderId=${order.orderId}">订单<shiro:hasPermission name="sys:order:edit">${not empty order.orderId? '修改':'添加' }
    </shiro:hasPermission><shiro:lacksPermission name="sys:order:edit">查看</shiro:lacksPermission></a></li> </ul><br/>

    。。。。。。。。。

    下面是更正之后的,这样在进入这个页面的时候,

    $(document).ready(function(){   }   的内容才会起作用!

    这里提示大家千万不要这么粗心啦!

    <%@ page contentType="text/html; charset=utf-8" %>
    <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
    <html>
    <head>
    <title>订单添加</title>
    <meta http-equiv="Content-Type" content="default"  name="decorator">
    <script type="text/javascript">
    
     $(document).ready(function(){ 
           XXXXXX........里面的代码不会执行
     });
     </script>
    </head> 
    <body>
    <ul class="nav nav-tabs">
    <li><a href="${ctx}/sys/order/list">订单列表</a></li>
    <li class="active"><a href="${ctx}/sys/order/form?orderId=${order.orderId}">订单
    <shiro:hasPermission name="sys:order:edit">${not empty order.orderId? '修改':'添加' }
    </shiro:hasPermission><shiro:lacksPermission name="sys:order:edit">查看</shiro:lacksPermission></a></li> </ul>
    <br/> 。。。。。。。。。
  • 相关阅读:
    获取其他线程的数据用 queue, 多进程Q
    self: 限制并发量asyncio
    asyncio 中给running 的loop 动态添加 Future Task
    雾里看花之 Python Asyncio
    python协程之动态添加任务
    异步IO( asyncio) 协程
    加快phpstorm、rubymine、pycharm系列IDE运行速度的方法
    scrapy 'fcntl' has no attribute 'F_GETFD
    sitemap index
    Django模板系统 运算
  • 原文地址:https://www.cnblogs.com/isme-zjh/p/12664073.html
Copyright © 2020-2023  润新知