function createCellWithInputOnkeyup(inputTypeinputNameinputValuelistid) {
//构造td节点withInput
//alert(生成的id:+listid);
var cell = documentcreateElement(td);
cellsetAttribute(aligncenter);
var input =documentcreateElement(< input style=textalign:right type=+inputType+ name=+inputName+ value=+inputValue+ onkeyup=CountYnse(+listid+)>);
cellappendChild(input);
//alert(cellinnerHTML);
return cell;
}