这就是我在做的事情。我通过类似函数增加php var:
<?php $j=1; ?>
jQuery('.mysubmitbuttin').click(function(){
increment();
});
function increment()
{
var inc = '<?php echo $j=$j+1; ?>';
alert(inc);
return inc;
}
警报公司每次都显示2。 php var $ j没有递增值。为什么会这样?
答案 0 :(得分:0)
php-code只在SERVER上执行一次!在获得DOM-Element之前