亚洲欧洲精品成人久久曰影片,四虎国产精品免费久久久,久久精品国产免费一区,亚洲欧洲国产精品久久,国产精品三级在线播放,欧美精品专区免费观看,欧美国产综合视频在线观看

云南網(wǎng)站建設創(chuàng )新企業(yè) 昆明多彩網(wǎng)絡(luò )公司

在線(xiàn)qq:540105663

翻譯了一個(gè)jquery插件:就地編輯插件jeditable

來(lái)源:昆明多彩網(wǎng)絡(luò )公司 日期:2010-02-05 閱讀: 發(fā)表評論

jeditable是一個(gè)jquery插件,它的優(yōu)點(diǎn)是可以就地編輯,并且提交到服務(wù)器處理,是一個(gè)不可多得的就地編輯插件。

由多彩原創(chuàng )翻譯的jeditable插件文檔,轉載請注明出自:www.visionarywomen-art.com

基本用法:再head中插入
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.jeditable.mini.js"></script>

<div class="edit" id="div_1">Dolor</div>
<div class="edit_area" id="div_2">test文字</div>

只有一個(gè)強制參數,發(fā)送內容的后臺地址

 $(document).ready(function() {
             $('.edit').editable('http://www.example.com/save.php');
       });
自動(dòng)匹配被編輯元素的寬高,當提交的時(shí)候,就提交到save.php
類(lèi)edit_area可以做為textarea輸入框. 還可以設置編輯后等待時(shí)文字信息或圖像,編輯前懸停提示框,設置確定或者取消。

 $(document).ready(function() {
             $('.edit').editable('http://www.example.com/save.php', {
             indicator : 'Saving...',
             tooltip   : 'Click to edit...'
     });
     $('.edit_area').editable('http://www.example.com/save.php', {
         type      : 'textarea',
         cancel    : 'Cancel',
         submit    : 'OK',
         indicator : '<img src="img/indicator.gif">',
         tooltip   : 'Click to edit...'
     });
 });
繼續...

發(fā)送到服務(wù)器的內容?
當提交并且發(fā)送以下格式的信息給服務(wù)器:ID=HTML中的ID號,vause=輸入框的內容。

id=elements_id&value=user_edited_content有個(gè)時(shí)候,如果需要改變參數名稱(chēng),比如像下面的格式:

elementid=elements_id&newvalue=user_edited_content那么可以添加2個(gè)參數

 $(document).ready(function() {
     $('.edit').editable('http://www.example.com/save.php', {
         id   : 'elementid',
         name : 'newvalue'
     });
 });
 
加載外部到內容編輯框
設置loadurl參數,示例:

 $(document).ready(function() {
     $('.edit_area').editable('http://www.example.com/save.php', {
         loadurl  : 'http://www.example.com/load.php',
         type    : 'textarea',
         submit  : 'OK'
     });
 });
load.php文件應該返回純文本的內容,而不XHML,因為要顯示在輸入框中,而save.php則應該返回XHTML內容,另外還有一個(gè)選擇就是標記數據源參數。

怎么使用SELECT?
可以使用JSON數組,這個(gè)數組通過(guò)data參數來(lái)設置,可以考慮通過(guò)loadur來(lái)返回,數組關(guān)聯(lián)名稱(chēng)是<option>標簽的name,數組的值則是<option>之間的值

JSON 數組如以下格式:

{'E':'Letter E','F':'Letter F','G':'Letter G', 'selected':'F'}注意最后一個(gè)選擇,當使用 'select'為名稱(chēng)時(shí),后面跟著(zhù)默認選中的name,示例:

 $('.editable').editable('http://www.example.com/save.php', {
     data   : " {'E':'Letter E','F':'Letter F','G':'Letter G', 'selected':'F'}",
     type   : 'select',
     submit : 'OK'
 });
也可以通過(guò)loadurl外部加載動(dòng)態(tài)的JSON數據:

腳本示范:

 <?php
 /* http://www.example.com/json.php */
 $array['E'] =  'Letter E';
 $array['F'] =  'Letter F';
 $array['G'] =  'Letter G';
 $array['selected'] =  'F';
 print json_encode($array);
 ?>
然后使用loadurl加載:

 $('.editable').editable('http://www.example.com/save.php', {
     loadurl : 'http://www.example.com/json.php',
     type   : 'select',
     submit : 'OK'
 });
如果擔心消耗服務(wù)器資源,可以直接在javascript腳本中設定,如:

 <?php
 $array['E'] =  'Letter E';
 $array['F'] =  'Letter F';
 $array['G'] =  'Letter G';
 $array['selected'] =  'F';
 ?>
 $('.editable').editable('http://www.example.com/save.php', {
     data   : '<?php print  json_encode($array); ?>',
     type   : 'select',
     submit : 'OK'
 });
如何修飾樣式
可以設置輸入框的class名稱(chēng)和樣式參數,首先,在css中定義css名稱(chēng),然后設置cssclass參數,第二,可以直接設置css樣式參數。如:

 $('.editable').editable('http://www.example.com/save.php', {
     cssclass : 'someclass'
 });

 $('.editable').editable('http://www.example.com/save.php', {
     loadurl : 'http://www.example.com/json.php',
     type    : 'select',
     submit  : 'OK',
     style   : 'display: inline'
 });
2個(gè)方式都可以設置inherit屬性,如果不設置inherit就不會(huì )繼承父屬性,如:

 Lorem <span class="editable" style="display: inline">ipsum</span> dolor
 sit amet.
 $('.editable').editable('http://www.example.com/save.php', {
     loadurl : 'http://www.example.com/json.php',
     type    : 'select',
     submit  : 'OK',
     style   : 'inherit'
 });
 
用提交函數的方式代替URL $('.editable').editable(function(value, settings) {
     console.log(this);
     console.log(value);
     console.log(settings);
     return(value);
  }, {
     type    : 'textarea',
     submit  : 'OK',
 });
注意函數必須返回字符串,

Note that function must return string. Usually the edited content. This will be displayed on page after editing is done.

參數參考
(String) method: 提交方法默認為 POST. 最有可能使用Post和Input

(Function) callback: 當提交之后調用的函數,有2個(gè)參數(value, settings),Value包括了From的內容,Settings包含了所有插件設置,原來(lái)的元素的內部函數。

 $('.editable').editable('http://www.example.com/save.php', {
     type     : 'textarea',
     submit   : 'OK',
     callback : function(value, settings) {
         console.log(this);
         console.log(value);
         console.log(settings);
     }
 });
(String) name: 設置提交參數的名稱(chēng),默認是value。

 $('.editable').editable('http://www.example.com/save.php', {
     name     : 'new_value'
 });
(String) id: 設置提交的輸入框的ID號. 默認是 id.

 $('.editable').editable('http://www.example.com/save.php', {
     id     : 'element_id'
 });
(Mixed) submitdata: 表單提交時(shí)額外的參數,可以是哈西,或者哈書(shū)返回的哈西。

$(".editable").editable("http://www.example.com/save.php";, {
   submitdata : {foo: "bar"};
});
$(".editable").editable("http://www.example.com/save.php";, {
   submitdata : function(value, settings) {
       return {foo: "bar"};
   }
});
(String) type: 輸入型類(lèi)型,text, textarea or select. 自己定義的輸入類(lèi)型的API.

(Integer) rows: 使用textarea時(shí)定義行數.

(Integer) cols: 使用textarea時(shí)定義列數.

(Integer) height: 定義輸入框的高度,單位是像素(px),默認是 auto. 意思是自動(dòng)計算. 也可以設置為 none.

(Integer) width: 定義輸入框的寬度,單位是像素(px),默認是 auto. 意思是自動(dòng)計算. 也可以設置為 none.

(Integer) loadurl: 加載外部數據到輸入框中,可以是普通字符串,也是JSON

$(".editable").editable("http://www.example.com/save.php";, {
    loadurl : "http://www.example.com/load.php"
});
注意編輯元素的ID會(huì )自動(dòng)添加到查詢(xún)字符串,如:

http://www.example.com/load.php?id=element_id
(Integer) loadtype: 使用loadurl時(shí)的請求類(lèi)型. 默認是GET. 可能用的只是GET和 POST之一.

(Mixed) loaddata: 使用loadurl的時(shí)候額外的請求參數,可以是一個(gè)哈希或函數返回一個(gè)哈希。

$(".editable").editable("http://www.example.com/save.php";, {
   loaddata : {foo: "bar"};
});
$(".editable").editable("http://www.example.com/save.php";, {
   loaddata : function(value, settings) {
       return {foo: "bar"};
   }
});
(Mixed) data:

可以是一個(gè)字符串或者函數返回的函數. 設置成編輯框的內容。

$(".editable").editable("http://www.example.com/save.php";, {
   data : "Lorem ipsum";
});
$(".editable").editable("http://www.example.com/save.php";, {
    data: function(value, settings) {
      /* Convert <br> to newline. */
      var retval = value.replace(/<br[\s\/]?>/gi, '\n');
      return retval;
    }
});
默認如果點(diǎn)擊了編輯框之外就是取消編輯了,也可以設置 onblur 選項,以下選項

•onblur : cancel 點(diǎn)擊編輯框之外的區域取消修改,點(diǎn)擊submit按鈕就提交修改。
•onblur : submit 點(diǎn)擊編輯框之外的區域提交修改
•onblur : ignore 忽略編輯框外部的點(diǎn)擊和按ESC鍵,點(diǎn)擊submit按鈕就提交修改。
可以使用事件響應,所有的Jquery時(shí)間都支持,一般使用 click 和 dbclick,單擊和雙擊,還有 mouseover,鼠標感應。

官方地址:http://www.appelsiini.net/projects/jeditable

更多該作者插件:http://www.appelsiini.net/projects
 
.

發(fā)表評論評論列表(有 條評論)

青铜峡市| 右玉县| 象山县| 维西| 宁乡县| 台北市| 汶上县| 疏附县| 凤城市| 平利县| 长武县| 合作市| 镇江市| 上犹县| 乐平市| 盱眙县| 湖口县| 石泉县| 北京市| 石河子市| 日土县| 余干县| 阳曲县| 靖安县| 西城区| 资溪县| 花垣县| 镇康县| 兰溪市| 沙坪坝区| 天镇县| 手游| 元阳县| 淮滨县| 田东县| 富蕴县| 滁州市| 积石山| 汝南县| 屏边| 苏尼特右旗|