关于这个脚本的一切工作都很好,但除了e.PreventDefault();
我已经尝试了一切但似乎没有任何工作。我不能.click()
在这个脚本中使用处理程序,因为它是动态调用的,否则我会尝试这样做。
JS
<script>
$('#vote_up').live('click', function(e) {
e.preventDefault();
$.post("votes.php", {
vote: "1",
item_id: "$item_id",
type: "$type"
}, function(data) {
$('#vote_count').empty().append(data);
});
});
$('#vote_down').live('click', function(e) {
e.preventDefault();
$.post("votes.php", {
vote: "-1",
item_id: "$item_id",
type: "$type"
}, function(data) {
$('#vote_count').empty().append(data);
});
});
</script>
HTML
<div class="vote_box">
<a href="#" id="vote_up">▲</a>
<span id="vote_count">$count</span>
<a href="#" id="vote_down">▼</a>
</div>