function changeDisplay() {
if ($("#btnShow").attr("value")== "添加附件") {
$("#IdShow").show();
$("#btnShow").attr("value", "取消添加附件");
}
else {
$("#IdShow").hide();
$("#btnShow").attr("value", "添加附件");
}
}
页面代码
<input type="button" id="btnShow" name="btnShow" value="添加附件" onclick="changeDisplay()" />
idShow为div的id