//隐藏page header
$("#yx_article_cnt").tap(function () {
console.log("i am tap ...");
var heightVal = $("#articleHeader").css("height");
if (heightVal == "0px") {
$("#articleHeader").show();
$("#articleHeader").animate({ height: "42px" }, 300, function () { });
} else {
$("#articleHeader").animate({ height: "0px" }, 300, function () { $("#articleHeader").hide(); });
}
// return false;
})
//隐藏page header
$("#yx_article_cnt").ta