页面弹出div

news/2024/7/4 1:32:02 标签: div, javascript, jquery, border, function, class
class="baidu_pl"> <class="tags" href="/tags/DIV.html" title=div>div id="article_content" class="article_content clearfix"> <class="tags" href="/tags/DIV.html" title=div>div id="content_views" class="htmledit_views">

<style>
.gonggao{
    position:absolute;
    top:20px;
    left:50px;
    width:500px;
    height:200px;
    class="tags" href="/tags/BORDER.html" title=border>border:1px solid #993300;
    background-color:#ffffff;
}
.gonggao h1{
    line-height:50px;
    font-size:24px;
    font-family:"黑体";
    font-weight:bold;
    text-align:center;
}
.gonggao class="tags" href="/tags/DIV.html" title=div>div{
    line-height:30px;
    font-size:18px;
    font-family:"黑体";
    text-align:center;
    color:#993300;
}
.gonggao class="tags" href="/tags/DIV.html" title=div>div a,.gonggao class="tags" href="/tags/DIV.html" title=div>div a:visited{
    color:#993300;
}
</style>
<class="tags" href="/tags/DIV.html" title=div>div id="gonggao" class="gonggao">
    <h1>欢迎窗口</h1>
    <class="tags" href="/tags/DIV.html" title=div>div>
        <a href="#">点击进入</a>
        <a href="class="tags" href="/tags/JAVASCRIPT.html" title=javascript>javascript:clsGG();">关闭</a>
    </class="tags" href="/tags/DIV.html" title=div>div>
</class="tags" href="/tags/DIV.html" title=div>div>
<script type="text/class="tags" href="/tags/JAVASCRIPT.html" title=javascript>javascript">
    class="tags" href="/tags/FUNCTION.html" title=function>function clsGG(){
        jQuery("#gonggao").toggle();
    }
</script>

class="tags" href="/tags/DIV.html" title=div>div> class="tags" href="/tags/DIV.html" title=div>div> <class="tags" href="/tags/DIV.html" title=div>div id="treeSkill">class="tags" href="/tags/DIV.html" title=div>div>

http://www.niftyadmin.cn/n/614880.html

相关文章

算法基础之--二分查找实现

package wck.sort;/*** Created on 18/9/10.*//*** program: demo* description: 二分查找实现* author: wck* create: 2018-09-10 11:11**/ public class BSearch {/*** 非递归实现* param a 目标数组,并且必须是有序的* param target 要查找的目标元素* return 返回&#…

算法基础之--二分搜索树(添加,删除,深度优先遍历,广度优先遍历)

/*** 二分搜索树*/ public class BSTree<E extends Comparable<E>> {private Node root;private int size;class Node {public E e;Node left,right;public Node(E e){this.e e;left null;right null;}}/*** size&#xff08;&#xff09;* return*/public int …

javascript传值乱码解决方案

页面上使用如下方式传值时&#xff0c;当到达后台是就会出现乱码&#xff1a; document.location.href"sends?name汉字" 解决方案&#xff1a; 前台&#xff1a; var url"sends?name汉字"; urlencodeURL(encodeURL(url)); document.location.hrefurl; 后…

DB2 SQL error: SQLCODE: -302, SQLSTATE: 22001, SQLERRMC: null

DB2 SQL error: SQLCODE: -302, SQLSTATE: 22001, SQLERRMC: null 当向数据库中插入记录时遇到以下异常&#xff0c;后经查处是&#xff0c;我将数据库自动生成逐渐的UUID改成了在java代码中手动生成UUID造成的&#xff0c;其实就是插入的字段值太长了&#xff0c;java中UUID位…

poi 和jxl的性能比较,借鉴别人的,本人没有测试过,不过感觉自己可以接收这种解释

借鉴第一个网友的&#xff1a; 目前在项目中&#xff0c;因为需要操作Excel&#xff0c;所以对相关的excel开源项目进行了了解&#xff0c;目前对excel的操作支持比较完善的主有两个项目&#xff1a;一个是POI&#xff0c;一个是JXL。 关于POI与JXL的大致区别为&#xff1a; …

java 读取 properties文件的各种方法

1。使用java.util.Properties类的load()方法示例&#xff1a; InputStream in lnew BufferedInputStream(new FileInputStream(name));Properties p new Properties();p.load(in);2。使用java.util.ResourceBundle类的getBundle()方法示例&#xff1a; ResourceBundle rb Re…

在tomcat中配置jndi

JNDI是J2EE中一个很重要的标准&#xff0c;通常我们是在J2EE编程中用到&#xff0c;Tomcat中提供了在JSP和Servelt中直接使用JNDI的方法&#xff0c;主要是通过dbcp连接池&#xff0c;下面谈一下我在Tomcat5.5中配置和使用JNDI的方法。一、先在自己应用程序WEB-INF目录下的web.…

jndi 详解

和多数java服务一样&#xff0c;SUN对JNDI也只提供接口&#xff0c;使用JNDI只需要用到JNDI接口而不必关心具体实现&#xff1a; private static Object jndiLookup() throws Exception { InitialContext ctx new InitialContext(); return ctx.lookup("java:comp/env…