取得動態div上面的某元件並做變動(收藏)

這個功能講白一點就是收藏的變動,不過在這邊不是使用值來判斷,而是使用收藏的圖示來判斷,而取值是為了要將該ID回傳伺服器端來進行資料庫的變化
$('body').on('click', '.CollectIIcon', function (e) {
    var CollectIIconValue = $(this).parent().parent().find('input')[0].value;
    var thisimg = $(this).find("img")[0];
    var imgpath = thisimg.src.substr(thisimg.src.lastIndexOf('/') + 1);
    var thisdiv = $(this).parent().parent().parent().parent();
    if (imgpath == "ic_collect_gray.png") {//訂閱        
    } else {//取消訂閱        
    }

留言

這個網誌中的熱門文章

Android 在Fragment下控制輸入鍵盤

jQuery獲取Select選擇的Text和Value(轉)

彈跳視窗iframe的運用