jquery中插件实现自动添加用户的具体代码_jquery

复制代码 代码如下:

<!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> 
<style> 
        body { font-size: 62.5%; } 
        label, input { display:block; } 
        input.text { margin-bottom:12px; width:95%; padding: .4em; } 
        fieldset { padding:0; border:0; margin-top:25px; } 
        h1 { font-size: 1.2em; margin: .6em 0; } 
        div#users-contain { width: 350px; margin: 20px 0; } 
        div#users-contain table { margin: 1em 0; border-collapse: collapse; width: 100%; } 
        div#users-contain table td, div#users-contain table th { border: 1px solid #CCC; padding: .6em 10px; text-align: left; } 
        .ui-dialog .ui-state-error { padding: .3em; } 
        .validateTips { border: 1px solid transparent; padding: 0.3em; } 
</style> 
<script type="text/javascript" language="javascript" src="jquery-1.7.1.min.js"> 
</script> 
<script type="text/javascript" language="javascript" src="jquery-ui-1.8.18.custom.min.js"> 
</script> 
<link rel="stylesheet" href="ui-lightness/jquery-ui-1.8.18.custom.css"/> 
<script type="text/javascript" language="javascript"> 
$(function(){ 
    $("#dialog").dialog({ 
        autoOpen:false, 
        modal:true, 
        buttons:[ 
                { 
            text:"create on account", 
            click:function(){ 
                var $tr=$("<tr><td>"+$("#username").val()+"</td><td>"+$("#email").val()+"</td><td>"+$("#pas").val()+"</td></td></tr>"); 
        //alert($tr); 
        $tr.appendTo("#users"); 
            $("#dialog").dialog("close"); 
                            } 

                }, 
                { 
            text:"cancel", 
            click:function(){ 
                $("#dialog").dialog("close"); 
                            } 
                } 
            ] 

        }); 
    $("#dialog_link").click(function(){ 
        $("#dialog").dialog("open"); 
        }); 
    }) 

</script> 
</head> 

<body> 
<div id="users-contain" class="ui-widget"> 
    <h1>Existing Users:</h1> 
   <table id="users" class="ui-widget ui-widget-content"> 
        <thead> 
            <tr class="ui-widget-header "> 
                <th>姓名</th> 
                <th>Email</th> 
                <th>密码</th> 
            </tr> 
        </thead> 
        <tbody> 
            <tr> 
                <td>John Doe</td> 
                <td>john.doe@example.com</td> 
                <td>johndoe1</td> 
            </tr> 
        </tbody> 
    </table> 
</div> 
<a href="#" id="dialog_link" class="ui-state-default ui-corner-all" style="font-size:18px">创建新用户</a> 
<!--对话框$("#dialog").dialog()他就是一个对话框,在页面中就会隐藏--> 
<div id="dialog" title="创建新用户" style="display:none"> 
姓名<br><input type="text"  id="username"> 
Email<br><input type="text" id="email"> 
密码<br><input type="password" id="pas"> 
</div> 
</body> 
</html> 

时间: 2024-11-08 17:26:15

jquery中插件实现自动添加用户的具体代码_jquery的相关文章

用jquery中插件dialog实现弹框效果实例代码_jquery

复制代码 代码如下: <!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=&qu

jquery中取消和绑定hover事件的实现代码_jquery

在网页设计中,我们经常使用jquery去响应鼠标的hover事件,和mouseover和mouseout事件有相同的效果,但是这其中其中如何使用bind去绑定hover方法呢?如何用unbind取消绑定的事件呢? 一.如何绑定hover事件 先看以下代码,假设我们给a标签绑定一个click和hover事件: $(document).ready(function(){ $('a').bind({ hover: function(e) { // Hover event handler alert("

jQuery中使用Ajax获取JSON格式数据示例代码_jquery

JSON(JavaScript Object Notation)是一种轻量级的数据交换格式.JSONM文件中包含了关于"名称"和"值"的信息.有时候我们需要读取JSON格式的数据文件,在jQuery中可以使用Ajax或者 $.getJSON()方法实现. 下面就使用jQuery读取music.txt文件中的JSON数据格式信息. 首先,music.txt中的内容如下: 复制代码 代码如下: [ {"optionKey":"1"

jquery中加载图片自适应大小主要实现代码_jquery

如何在固定大小的div中放置一个图片,当图片较小时显示实际大小,当图片超过div 大小时图片 自动适应div 的大小 实现过程的主要代码: 复制代码 代码如下: .divImg{ max-height:200px; max-width:200px; width: expression(this.width > 200 && this.width > this.height ? 200 : auto); height: expression(this.height > 20

自己动手制作jquery插件之自动添加删除行功能介绍_jquery

这是一个我认为功能基本完善的插件,它包括添加.删除.插入.上下移动.索引标识. 数量控制等功能,基本上能满足大部分多行添加的需求,当然,在完成这些功能的前提下,我也尽量保持较少的代码量和易理解的逻辑性.      这个插件的演示页面是http://www.lovewebgames.com/demo/autoAdd/autoAdd.html ,引用自己动手制作jquery插件之自动添加删除行(上)里的介绍,这是一个简单的插件,它的作用是:一个系统中有大量的需要对一个行进行复制添加,希望能够进行批量

jQuery自动添加表单项的方法_jquery

本文实例讲述了jQuery自动添加表单项的方法.分享给大家供大家参考.具体如下: 这里实现通过点击按钮动态添加一个表单输入项 <script type="text/javascript" charset="utf-8"> $(function() { var fieldCount = 1; $("#addFieldButton").click(function() { fieldCount++; if(fieldCount <=

Jquery中$.get()方法和$.post()方法接接受代码

Jquery中$.get()方法和$.post()方法接接受代码 在使用jquery实现AJAX的应用时,经常使用到的方法有$.get()和$.post(),两个方法在使用时,接收其传过来的参数的方式有所不同,在使用$.post()时,接收的方式为:Request.Form["myid"]; 在使用$.get()时,接收的试为:Request.QueryString["myid"]: =========================================

Android开发中如何实现自动挂断电话的代码

实现方法一代码 1.准备AIDL文件 挂断电话的AIDL文件都是Android自带的文件,我们可以从Android的源代码中找到这两个文件,它们分别是NeighboringCellInfo.aidl和ITelephony.aidl 我把NeighboringCellInfo.aidl放在项目的android.telephony包下,将ITelephony.aidl放在com.android.internal.telephony包下 NeighboringCellInfo.aid具体内容如下: /

jQuery Validate插件实现表单强大的验证功能_jquery

jQuery Validate插件捆绑了一套有用的验证方法,包括 URL 和电子邮件验证,同时提供了一个用来编写用户自定义方法的 API.所有的捆绑方法默认使用英语作为错误信息,且已翻译成其他 37 种语言. 第一节:jQuery Validation让验证变得如此容易 一.官网下载jquery,和jquery validation plugin 二.引入文件 <script src="js/jquery-1.8.0.min.js" type="text/javascr