码迷,mamicode.com
首页 > 其他好文 > 详细

基于bootstrap的bootstrap-editable插件实现即时编辑功能

时间:2014-11-28 15:43:41      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   使用   sp   java   on   

   1.引用基本css和js:
<link href="bootstrap3/css/bootstrap.min.css" rel="stylesheet" type="text/css" /><!--bootstrapcss-->
<link href="js/bootstrap3-editable/css/bootstrap-editable.css" rel="stylesheet" type="text/css" /><!--bootstrap3-editable 插件样式--> <script src="js/jquery-1.7.1.min.js" type="text/javascript"></script> <script src="jss/bootstrap.min.js" type="text/javascript"></script> <script src="js/bootstrap3-editable/js/bootstrap-editable.min.js" type="text/javascript"></script><!--bootstrap3-editable 插件js-->

 
2.html和js
<a href="javascript:;" id="username" data-pk="2257"> 中国语言文字网</a> </div>
bubuko.com,布布扣
    <script type="text/javascript">
        $(function() {
            //editables 
            $(#username).editable({
                url: files/Handler.ashx,
                type: text,
                pk: $("#username").attr(data-pk),//唯一标示值
                name: username,
                title: 修改,
                success: function(value) {
                    $("#username").text(value);
                }
            });



        });

    </script>
bubuko.com,布布扣
3.在files/Handler.ashx里处理程序。修改标题。
bubuko.com,布布扣

 更多参数使用。大家可以百度。

基于bootstrap的bootstrap-editable插件实现即时编辑功能

标签:style   blog   http   io   color   使用   sp   java   on   

原文地址:http://www.cnblogs.com/vanteking/p/4128458.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!