|
|
|
@ -35,8 +35,21 @@ function expand_tools_expand()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 描述显示更多信息
|
|
|
|
|
function show_more_msg()
|
|
|
|
|
{$("#course_description").toggleClass("course_description_none");}
|
|
|
|
|
function show_more_msg(){
|
|
|
|
|
$("#course_description").toggleClass("course_description_none");
|
|
|
|
|
var information = $("#expend_more_information");
|
|
|
|
|
var val = information.attr("value");
|
|
|
|
|
if (val=="展开更多信息" )
|
|
|
|
|
{
|
|
|
|
|
$("#expend_more_information").text("收起描述信息");
|
|
|
|
|
information.attr("value","收起描述信息");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
$("#expend_more_information").text("展开更多信息");
|
|
|
|
|
information.attr("value","展开更多信息");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
|
|
|
//////////////////////////////////////////////////////////////项目讨论区
|
|
|
|
|