程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 綁定對象-jQuery的data()方法綁定了一個對像,但是在獲取該對象時是undefined,請教

綁定對象-jQuery的data()方法綁定了一個對像,但是在獲取該對象時是undefined,請教

編輯:編程綜合問答
jQuery的data()方法綁定了一個對像,但是在獲取該對象時是undefined,請教

綁定對象
$(list).each(function(){
// alert(list[i]);
var li = '

'+this.cn_notebook_name+'';
$('#first_side_right ul').append(li);
$('#first_side_right ul li:last').data("noteBook",this);
});

獲取綁定對象

var checked_li = $('#first_side_right .checked').parent();
    console.log(checked_li);
    var notebook = checked_li.data("noteBook");
    console.log(notebook+"sdf");

浏覽器錯誤信息
[prevObject: o.fn.init[0], context: document, jquery: "2.1.0", constructor: function, selector: ""…]context: documentlength: 0prevObject: o.fn.init[0]__proto__: o[0]
local.js:166 undefinedsdf
note.js:50 Uncaught TypeError: Cannot read property 'cn_notebook_id' of undefined

最佳回答:


你的this是誰你知道嗎?你到底要放什麼東西?你要知道this不是list[i],function有兩個參數的,一個代表的是list[i],還有一個就是i,你找下jquery的幫助文檔

手頭沒幫助文檔,n,i得順序不知道寫反了沒有,你試下就知道了

 $(list).each(function(n,i){
var li = '
'+n.cn_notebook_name+'';
$('#first_side_right ul').append(li);
$('#first_side_right ul li:last').data("noteBook",n);
});
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved