KING_HAJWALAعضو جديد الـجنس : نقاط التقييم : 0 عدد المشاركات : 10 نقاط الشراء : 0 Point طلبات التصميم : 10:0 تاريخ التسجيل : 27/09/2013 نقاط المشاركه : 4074 | موضوع: كود جافا سكربت لـ زحرفة الردود بشكل رائع وجميل 2013-09-27, 10:24 am |
| كود جافا سكربت لـ زحرفة الردود بشكل رائع وجميلالسلآم عليكم ورحمة الله وبركاته بسم الله الرحمن الرحيم اوولآَ طريقة التركيب لوحة الادارة > عناصر اضافية > HTML و JAVASCRIPT > إدارة أكواد Javascript > سوي انشاء كود جديد وكمان فعلوووا " شغلووا " الجافا سكربت اذا كان مو مشغل طولت عليكم ؟ الكود كالتالي : 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])) } }) }); مثال على الكود : گعضو گريم والكثير اكتشفوه بـ انفسكم بس والله شكله راائع |
|