html怎么做一个按钮,就弹出一段文字的窗口呀

2024-12-14 20:33:10
推荐回答(5个)
回答1:

html做点一个按钮就弹出文字的代码:

  1. 最基本的弹出窗口代码

  2. 经过设置后的弹出窗口

  3. 用函数控制弹出窗口





  4. 同时弹出2个窗口

  5. 主窗口打开文件1.htm,同时弹出小窗口page.html

    如下代码加入主窗口区:

    加入区: open

  6. 弹出的窗口之定时关闭控制

    首先,将如下代码加入page.html文件的区:

  7. 在弹出窗口中加上一个关闭按钮



  8. 内包含的弹出窗口-一个页面两个窗口





    打开一个窗口


  9. 终极应用--弹出的窗口之Cookie控制
    首先,将如下代码加入主页面HTML的区:
     

Asp教程-ASP应用

this.Response.Write(");

弹出跟你当前的窗口有没有菜单工具栏没有关系,你只要在页面中写一个脚本它就弹出了.比如
xxxxx

以下列出一些弹出窗口的参数:

(如:"fullscreen=yes, toolbar=yes")。下面是被支持的各种特性。
channelmode = { yes | no | 1 | 0 } 是否在窗口中显示阶梯模式。默认为no。
directories = { yes | no | 1 | 0 } 是否在窗口中显示各种按钮。默认为yes。
fullscreen = { yes | no | 1 | 0 } 是否用全屏方式显示浏览器。默认为no。
height = number 指定窗口的高度,单位是像素。最小值是100。
left = number 指定窗口距左边框的距离,单位是像素。值必须大于或者等于0。
location = { yes | no | 1 | 0 } 指定是否在窗口中显示地址栏。默认为yes。
menubar = { yes | no | 1 | 0 } 指定是否在窗口中显示菜单栏。默认为yes。
resizable = { yes | no | 1 | 0 } 指定是否在窗口中显示可供用户调整大小的句柄。默认为yes。
scrollbars = { yes | no | 1 | 0 } 指定是否在窗口中显示横向或者纵向滚动条。默认为yes。
status = { yes | no | 1 | 0 } 指定是否在窗口中显示状态栏。默认为yes。
titlebar = { yes | no | 1 | 0 } 指定是否在窗口中显示标题栏。在非调用HTML Application或者一个对话框的情况下,这一项将被忽略。默认为yes。
toolbar = { yes | no | 1 | 0 } 指定是否在窗口中显示工具栏,包括如前进、后退、停止等按钮。默认为yes。
top = number 指定窗口顶部的位置,单位是像素。值必须大于或者等于0。
width = number 指定窗口的宽度,单位是像素。最小值是100。

回答2:

比如说有一个提交按钮    


然后添加上这个                


意思就是点击的时候进行触发js 就弹出来了


还有其他方式如用函数 ,引入 标签


eg:

回答3:

一般js可以做到




function disp_alert()
{
alert("弹窗内容!")
}





无js实现弹窗代码




    
    
     页面名称 

html,body {
    height: 100%;
}
.dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: 0px;
    margin-top: 0px;
    width: 0px;
    height: 0px;
    overflow: hidden;
    border: 1px solid #999;
    text-align: center;
    border-radius: 25px;
    box-shadow: 5px 5px 5px #999;
    background: #88f;
    transition: all 0.3s;
}
.dialog .close {
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 20px;
    border: 1px solid #999;
    background: #339;
    color: #fff;
    text-align: center;
}
#dialogswitch {
    display: none;
}
#dialogswitch:checked+.dialog {
    margin-left: -150px;
    margin-top: -100px;
    width: 300px;
    height: 200px;
}
 



点击弹出对话框


    

标题


    内容。。。。。。。。。。。
    关闭


回答4:

  1. 需要编写HTML代码,显示按钮

  2. 需要编写相应的JavaScript代码,给按钮添加点击事件

  3. 点击事件发生之后生成一个弹窗

代码如下:




MyHtml


function showMessage(){
alert("This is a message!");
}



button

回答5:

代码是:




可弹出文字






请采纳

相关问答