|
|
|
@ -47,14 +47,14 @@ function show_more_msg() {
|
|
|
|
|
var information = $("#expend_more_information");
|
|
|
|
|
var arrow = $("#arrow");
|
|
|
|
|
var val = information.attr("value");
|
|
|
|
|
if (val == "展开更多信息") {
|
|
|
|
|
if (val == "show_more") {
|
|
|
|
|
$("#expend_more_information").text("收起描述信息");
|
|
|
|
|
information.attr("value", "收起描述信息");
|
|
|
|
|
information.attr("value", "hide_more");
|
|
|
|
|
arrow.attr("src", "/images/jiantouup.jpg")
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$("#expend_more_information").text("展开更多信息");
|
|
|
|
|
information.attr("value", "展开更多信息");
|
|
|
|
|
information.attr("value", "show_more");
|
|
|
|
|
arrow.attr("src", "/images/jiantou.jpg")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|