zoukankan
html css js c++ java
Jq弹出公告
<!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="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script><style> *{margin:0;padding:0;font-size:12px;} li{float:left;100px;border:1px solid #ccc;list-style:none;text-align:center;} h3{margin:20px auto;text-align:center;} input{120px;height:30px;cursor:pointer;} #notice{position:absolute;400px;padding:20px;background:#eee;border:1px solid #ccc;left:10px;top:10px;display:none;} </style> <script> $(function(){ $('#open').click(function(){ $('#notice').slideDown(); $('#texta').val('豪情').select(); }); $('#closed').click(function(){ $('#notice').slideUp(); }); }); </script></head> <body> <h3> <input id="open" type="button" value="弹出公告" /><br /> <input id="closed" type="button" value="关闭公告" /> </h3> <div id="notice"> <textarea name="" id="texta" cols="30" rows="10">
运行代码
查看全文
相关阅读:
sublime less css less-plugin-clean-css lessc
matplotlib 中文显示问题
关闭edge新标签页广告
刷写网卡MAC地址
tar打包命令
Print Spooler服务意外停止
使用cmd命令为windows添加环境变量
wps多用户使用问题
屏蔽知乎登录弹窗
Excel中无法移动分页符
原文地址:https://www.cnblogs.com/jikey/p/1744953.html
最新文章
linux配置LAMP(CentOS7.4 Apache2.4 PHP5.6)
robot framework引用databaselibrary
Python break语句,就像在C语言中,打破了最小封闭for或while循环
jenkins插件下载地址http://updates.jenkins-ci.org/download/plugins/
执行newman命令报错
python 库安装
newman 命令行
https://jdbc.postgresql.org/download.html#current
https://stackoverflow.com/questions/64220696/does-timescaledb-use-exactly-the-same-jdbc-drivers-as-postgresql-or-not
https://www.w3school.com.cn/js/js_string_methods.asp
热门文章
DBeaver下载:https://dbeaver.io/
Jmeter进行webSocket接口测试
django mysql
cmd requests.ge 乱码
添加新的spider导致的spider not found 和 compass 看不到手动创建的collections
linux 近期常用的操作命令
django+nginx+uwsgi+django
mongodb 排序输出 if no direction is specified, key_or_list must be an instance of list
mongodb 将字符串格式改为整数
django 3.0 文档学习笔记
Copyright © 2011-2022 走看看