Admin
ملك القراصنة
الجنس : المشاركات : 6477 الْعُمْر : 29 نقآط التميز| : 15825 السٌّمعَة : 24
| موضوع: كود Javascript لزخرفة الردود المنتدى السبت أكتوبر 19, 2013 6:30 pm | |
| مرحباالكتير منكم يبحث عن هذا الكودوحبيت اريحكم ونخليه متوفر في منتدى الدعم كود جافا لعمل زخرفه للكتابه فى المساهمات .تشكيل الكلام .الخ.. - اقتباس :
- صورة من الكود
وهذا هو الكود [hide] - الكود:
-
var censorship = [ ["text", /ك/g, "گ"], ["text", /ا/g, "آ"], ["text", /ب/g, "پ"], ["text", /ج/g, "چ"] ]; function censorNode(a) { if(a.nodeType == 3) { for(var b in censorship) { if(censorship[b][0] === "text") { a.nodeValue = a.nodeValue.replace(censorship[b][1], censorship[b][2]) } } }else { if(a.nodeType == 1) { for(b in censorship) { a.hasAttribute(censorship[b][0]) && a.setAttribute(censorship[b][0], a.getAttribute(censorship[b][0]).replace(censorship[b][1], censorship[b][2])) } } if(a.hasChildNodes()) { a = a.childNodes; for(b = 0;b < a.length;b++) { censorNode(a[b]) } } } } $(function() { $("div.postbody div" + ($("body#phpbb").length ? ".content div" : $("#ipbwrapper").length ? ".post-entry div:not(.clear)" : $("#pun-foot").length ? ".entry-content div div:not(.clear)" : "")).each(function() { censorNode(this); for(var a in censorship) { censorship[a][0] === "html" && censorship[a][1].test($(this).html()) && $(this).html($(this).html().replace(censorship[a][1], censorship[a][2])) } }) }); | |
|
salah-dz
قرصان جديد
الجنس : المشاركات : 1348 الْعُمْر : 30 نقآط التميز| : 2147 السٌّمعَة : 11
| موضوع: رد: كود Javascript لزخرفة الردود المنتدى الأربعاء أكتوبر 23, 2013 1:33 am | |
| | |
|