onMouseDown
正如@datasage指出的那样onClick
,您的addHit
javascript 在设置cookie 值之前运行。有关详细信息,请参阅此页面
编辑:我明白你现在想要做什么。您将需要创建另一个 php 文件(在我的示例中为 datagetter.php)来处理目录扫描并以有用的格式返回数据,我相信如果不重新加载页面或添加一个文件,您想要做的所有事情都不会同时发生在一个文件中ajax 处理程序到您的 php 代码的开头。
使用 php 回显您的链接
<a href="ftp://<?php echo $source . '/' . $source2 . '/' . $genre . '/' . $title ?>" id="PopUpItUp" class="detail" data-title="<?php echo $title; ?>" data-id="<?php echo $id; ?>"><?php echo $title ?> (Episodes)</a>
使用 jQuery 将事件处理程序附加到每个链接
<script>
$(window).load(function () {
$('.detail').each().mousedown(function () {
//set title cookie access this in php with $_COOKIE['title']
$.cookie('title', $(this).attr('data-title'));
});
$('.detail').each().click(function (e) {
//increment hitcount
var titleid = $(this).attr('data-id')
addHit('./count.php?id=' + titleid , titleid);
//get data to display via ajax call you may want this IN addHit somewhere
//there will be a delay in getting the data you want so display something to show progress while we wait
$("#popup").html("<div><img src='progresshappens.gif' width='25px' height='25px' />");
$.ajax({
url: 'http://yourdomain.com/datagetter.php?id=' + titleid,
success: function(data) {
//Do something with data, probably add to popup window? here is a starting point
//Check into using javascript 'for each' function
$('#popup').html('<div>' + data + '</div>');
},
error: function(request, error, errormessage) {
//show error, something bad happened
$("#messages").html(error + '\n' + errormessage);
}
});
//don't follow link
e.preventdefault();
return false;
});
</script>