عرض مشاركة واحدة
قديم 04-12-2022, 04:16 PM   #2
 
الصورة الرمزية ابن الصحراء
 
تاريخ التسجيل: Apr 2021
الدولة: Khobar
المشاركات: 3,111

Awards Showcase

معدل تقييم المستوى: 100
ابن الصحراء has a reputation beyond reputeابن الصحراء has a reputation beyond reputeابن الصحراء has a reputation beyond reputeابن الصحراء has a reputation beyond reputeابن الصحراء has a reputation beyond reputeابن الصحراء has a reputation beyond reputeابن الصحراء has a reputation beyond reputeابن الصحراء has a reputation beyond reputeابن الصحراء has a reputation beyond reputeابن الصحراء has a reputation beyond reputeابن الصحراء has a reputation beyond repute
افتراضي

مرحبا اخي النشمي
جرب ابحث عن الكود التالي
كود:
{postrow.displayed.RANK_IMAGE}{postrow.displayed.POSTER_AVATAR}<br /><br />
وضع الكود التالي اسفلة مباشرة
كود:
<div class="postprofile-contactr">الاعجابات المتلقاة »</div><br /> 
                                  <div class="postprofile-contacte">الاعجابات المُرسلة »</div><br />
ثم ضع التالي بالجفا مع اختيار المواضيع

كود:
$(function() {
$('tr.post td:first-child').each(function(){
var userId = $(this).find('strong a').attr('href'),
    postprofile = $(this).find('.postprofile-contactr');
    $.get(userId+'stats' , function(d) {
      var lastvisit = $('fieldset:nth-child(2) > ul > li:nth-child(2)', d);
 
      if (lastvisit[0]) {
        lastvisit = lastvisit.html();
   
        $(postprofile).append('<span class="user_last_visit">' + lastvisit + '</span>');
      }
    });
console.log(userId);
});

});
$(function() {
$('tr.post td:first-child').each(function(){
var userId = $(this).find('strong a').attr('href'),
    postprofile = $(this).find('.postprofile-contacte');
    $.get(userId+'stats' , function(d) {
      var lastvisit = $('ul > li:nth-child(5)', d);
 
      if (lastvisit[0]) {
        lastvisit = lastvisit.html();
   
        $(postprofile).append('<span class="user_last_visit">' + lastvisit + '</span>');
      }
    });
console.log(userId);
});

});
واخبرنا بالنتيجة
ابن الصحراء متواجد حالياً   رد مع اقتباس