zoukankan      html  css  js  c++  java
  • bootstrap

    bootstrap    https://v3.bootcss.com
    前端框架
        对html、css和js的封装   
            
     
    特点
        信息量小
        主要用于响应式和移动端设备
     
    基于jquery开发的框架,在使用bs之前,先引入 jquery
     
     
    栅格 
        由行 和 列组成  每一行  最多  12列 
     
     
    让按钮弹出一个模式对话框,需要设置按钮的属性  
        data-toggle="modal" data-target=".aa"  target值为模式对话框的类名
        模式对话框<div class=""modal modal-dialog modal-content>  
        关闭模式对话框 : 按钮中  data-dismiss =“modal”
     
     
     
     
     
     
    错题管理系统 表设计
    create database db1806 创建数据库
    create table wrongtable  创建表
        id int primary key auto_increment,
            icontent varchar(100),
            iwhere varchar(100),
            idea varchar(100)
    )
     
     
     
     
     
     
    前端向后台传递数据的方式
    1、表单的name传值
    2、超链接的url传值
    3、ajax 向服务器传递数据
    4、jsonp 请求接口
     
  • 相关阅读:
    tctip demo页面>
    tctip demo页面>
    tctip demo页面>
    tctip demo页面>
    tctip demo页面>
    tctip demo页面>
    tctip demo页面>
    tctip demo页面>
    tctip demo页面>
    sql 随笔
  • 原文地址:https://www.cnblogs.com/tis100204/p/10302361.html
Copyright © 2011-2022 走看看