function createCellWithInputOnkeyup(inputType,inputName,inputValue,listid) ...{
//构造td节点withInput
//alert('生成的id:'+listid);
var cell = document.createElement("td");
cell.setAttribute("align","center");
var input =document.createElement("< input style='text-align:right' type='"+inputType+"' name='"+inputName+"' value='"+inputValue+"' onkeyup="CountYnse('"+listid+"')">");
cell.appendChild(input);
//alert(cell.innerHTML);
return cell;
}