Dieser Artikel stellt hauptsächlich den Beispielcode der Ajax-Implementierung einer PHPCMS-ähnlichen Funktion vor. Er ist sehr gut und hat Referenzwert.
Zuallererst das Hintergrundmodul ---. > News Mood--->Mood-Konfiguration Entfernen Sie das überflüssige Element und ändern Sie den Namen in „Gefällt mir“. Senden und speichern.
Die zweite ist die Vorlagendatei zum Ändern der Nachrichtenstimmung:/phpcms/templates/default/mood/index.html
Alle Codes löschen und nur die Gesamtzahl der Likes zurückgeben
{loop $setting $k $v} {$data[$v['fields']]} {/loop}
Die Implementierung der Vorlagenseite erfolgt wie folgt durch das Schleifenarray
<p class="info"> <a href="http://phpcms.com/content-150-1-1.html" target="_blank" title="展会现场人头攒动"><h4 class="title ellipsis download">展会现场人头攒动</h4></a> <p class="date">2017-02-01</p> <p class="sum"> <span class="laud"><i class="iconfont zanbtn" >赞</i><a href="javascript:;" rel="external nofollow" <span style="min-width: 0px; min-height: 0px; box-sizing: border-box; color: rgb(34, 34, 34); unicode-bidi: -webkit-isolate; font-family: Consolas, "Lucida Console", monospace; white-space: pre-wrap;">id</span><span style="color: rgb(34, 34, 34); font-family: Consolas, "Lucida Console", monospace; white-space: pre-wrap;">="</span><span style="min-width: 0px; min-height: 0px; box-sizing: border-box; color: rgb(34, 34, 34); unicode-bidi: -webkit-isolate; font-family: Consolas, "Lucida Console", monospace; white-space: pre-wrap;">zans{$r[id]}</span><span style="color: rgb(34, 34, 34); font-family: Consolas, "Lucida Console", monospace; white-space: pre-wrap;">" </span> title="<span style="color: rgb(34, 34, 34); font-family: Consolas, "Lucida Console", monospace; white-space: pre-wrap;">$r[id]}</span>">0</a></span> </p> </p>
Ajax Die Verarbeitung von K=8 ist „Gefällt mir“
$(".zanbtn").on("click",function(){ var id = $(this).next().attr("title"); var aval = $(this).next("a").html(); $.getJSON('http://phpcms.com/index.php?m=mood&c=index&a=post&id=150-'+id+'-1&k=8&'+Math.random()+'&callback=?', function(data){ if(data.status==1) { console.log( $(this).next()); $("#zans"+id).html(data.data); }else { alert(data.data); return false; } }) });
Ich habe das Obige für Sie zusammengestellt und hoffe, dass es Ihnen in Zukunft hilfreich sein wird.
Verwandte Artikel:
Detaillierte Analyse der Verwendung von AJAX (Code eingefügt)
php+ Ajax+h5 implementiert die Bild-Upload-Funktion
php+ajaximplementiert die Abfrage-Dropdown-Inhaltsfunktion
Das obige ist der detaillierte Inhalt vonAjax implementiert PHPCMS-ähnliche Funktionen (grafisches Tutorial). Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!