<span style="font-size:14px;">function getAddFocus(id){//針對添加操作中的簡介和備注,textarea獲得焦點清空輸入框 var textarea=document.getElementById(id); textarea.value=""; textarea.style.color="black"; }
function lostAddFocus(id){//針對添加操作中的簡介和備注,textarea失去焦點且內容為空時,顯示提示信息 var textarea=document.getElementById(id); var textarea_value=textarea.value; if(textarea_value==""){ textarea.value="最多能輸入50個字"; textarea.style.color="gray"; } }</span>