我想在一个事件onclick中添加多个功能。
像这样。:
$("div").click( function() {
$("img").fadeOut();
$("font").hide();
$("table").show();
});
(从评论中复制粘贴的真实代码:)
$(document).ready(function(){
$("#noti_t").click(function() {
$("#noti_show").toggle();
$("#noti_s").hide();
var wholedata="clear=1";
$.ajax({ type: "POST", url: "noti_clear.php", data: wholedata, cache: false, });
return false;
});
});