我有一个 javascript 代码,但用户无法使用它,所以我提供了帮助并访问了他的网站。发现title="-arabic-"
我的代码在title="Male"
这里非常有问题,如果我使用标题的复制和粘贴并将其放置在我的 javascript 中,它实际上会搜索阿拉伯语版本还是我需要做一些额外的事情?
$(document).ready(function() {
var $postBG = $('.post .poster-profile img');
$postBG.filter('[title="ذك"]').closest('td').addClass('male').children('td').removeClass('row1').removeClass('row2');
$postBG.filter('[title="انثى"]').closest('td').addClass('female').children('td').removeClass('row1').removeClass('row2');
});
那是我开始使用的代码,您可以在标题位置看到阿拉伯语。
IMG 来源:男性
<img src="http://i49.servimg.com/u/f49/14/49/52/30/male210.gif" alt="ذكر" title="ذكر">
女性
<img src="http://i49.servimg.com/u/f49/14/49/52/30/female11.gif" alt="انثى" title="انثى">