$(function () {
$("#btnhelpful,#btndisagree").click(function () {
net.page(
"/home/html/HelpContain.aspx",
"save_help_comment",
{
a_id: "5cb57dccef69273860637b7c",
idea: $(this).attr("data-value")
}, function (e) {
if (e.success)
window.location = "/help/" + e.a_id + ".html";
else
alert(e.message);
});
});
$("#help_content img").click(function () {
var url = $(this).attr("src");
//console.log(url);
show.Image(url, function () { });
});
});