我現在面臨的問題是我的代碼jQuery的使用jQuery</p> <p>這裏+ PHP的負載更
<script type='text/javascript' src='jquery-1.10.2.min.js'></script>
<script type="text/javascript">
$(function() {
$(".more2").click(function() {
var element = $(this);
var msg = element.attr("id");
$.ajax({
type: "POST",
url: "insta2.php",
data: "lastmsg="+ encodeURIComponent(msg),
success:function (data) {
$("#morebutton").replaceWith(data);
}
});
return false;
});
});
</script>
<span class="more" id="morebutton">
<a id="1" class="more2" title="Follow" href="#" style="color:#000">
Read More
</a>
</span>
,這裏是insta2.php
<?php
if(isset($_POST['lastmsg']))
{
$a= $_POST['lastmsg'];
$a = $a++;
?>
<br>
<span class="more" id="morebutton">
<a id="<?php echo $a;?>" class="more2" title="Follow" href="#" style="color:#000">
<?php echo $a;?> Read More
</a> </span>
<?php }?>
我jQuery的只有一個1套和之後,每次點擊不起作用
有什麼方法可以繼續計數?
這樣
更多 1閱讀更多 2閱讀更多 3閱讀更多 4更多 等等...
現在它的劑量不工作 – madman
檢查我的回答對JS小提琴。 – Scopey