zoukankan      html  css  js  c++  java
  • <php>json小结

    1、页面中如果即用到jquery包,又用到js文件,要先写jquery包,再加载js文件

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <script type="text/javascript" src="jquery-1.11.2.min.js">//jquery包
    </script>
    <script type="text/javascript" src="tanchuang.js">//js文件
    </script>
    <link href="tanchuang.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    *{
        margin: 0px auto;
    }
    </style>
    </head>

     2.json中的“||”是默认值的意思

    this.config = {
            width : config.width || 300, //宽度,如果config.width的值存在就用config.width,如果不存在,就取默认值300
            height : config.height || 200, //高度,如果config.height的值存在就用config.height,如果不存在,就取默认值200
            buttons : config.buttons || '', //默认无按钮
            title : config.title || '标题', //标题
            content : config.content || '内容', //内容
            isMask : config.isMask == false?false:config.isMask || true, //是否遮罩
            isDrag : config.isDrag == false?false:config.isDrag || true, //是否移动
            };

     3.实现点击“删除”按钮弹出对话框,选择是否删除

    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    </head>
    
    <body>
    <a href="delete.php" onclick="return confirm('确定删除吗?')">删除</a>
    </body>
    </html>
  • 相关阅读:
    简洁又漂亮的单网页404页源码(html格式404源码)
    运行bee run之后出现的错误以及解决方法
    window beego 安装出现的错误
    golang gin框架 使用swagger生成api文档
    go语言切片作为函数参数
    Go中函数接收器不能改变接收者的地址
    docker 删除none镜像
    redis下载安装
    git切换分支
    angular自定义验证器添加入模板驱动表单
  • 原文地址:https://www.cnblogs.com/shark1100913/p/5352102.html
Copyright © 2011-2022 走看看