弹窗main

Posted ysdong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了弹窗main相关的知识,希望对你有一定的参考价值。

<!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">
</script>
<script type="text/javascript" src="tanchuang.js">
</script>
<link href="tanchuang.css" rel="stylesheet" type="text/css" />
<style type="text/css">
*{
    margin: 0px auto;
}
</style>
</head>

<body style="background-color:#999">
<div style="width:200px; margin-top:10px; margin-right:50px;">


<input type="button" value="登录" id="btntc" style="width:100px; height:30px; font-size:18px;" />


</div>



<div id="tc"></div>



</body>
<script type="text/javascript">
$(document).ready(function(e) {
    
    $(‘#btntc‘).click(function(){
        
            var html = "<form action=‘shoppingchuli.php‘ method=‘post‘><div><div>账号:<input type=‘text‘ name=‘uid‘ value=‘lisi‘ /></div><br><div>密码: <input type=‘password‘ name=‘pwd‘  value=‘666666‘/></div><br><input type=‘submit‘ value=‘登录‘ /></div></form>";
            var button ="";
            
            
            
            var win = new Window({
                
                width : 400, //宽度
                height : 150, //高度
                title : ‘天启购物登录‘, //标题
                content : html, //内容
                isMask : false, //是否遮罩
                buttons : button, //按钮
                isDrag:true, //是否移动
                
                });
        
        })
});
</script>
</html>

 

以上是关于弹窗main的主要内容,如果未能解决你的问题,请参考以下文章

NDK: ant 错误 [javah] Exception in thread "main" java.lang.NullPointerException 多种解决办法(代码片段

idea2017快捷键提示浮动弹窗如何取消

VSCode 配置 用户自定义代码片段 自定义自动代码补充

Element-ui 设置弹窗取消关闭

爬虫遇到头疼的验证码?Python实战讲解弹窗处理和验证码识别

是否可以动态编译和执行 C# 代码片段?