0
我有我傳遞一個jQuery對象設置的分配給一個變量
function throwBox(div){
if(typeof div !== 'undefined'){
div.children(":text").val('');
}
div.css({'left':'-10000px'});
}
,我會打電話像這樣
throwBox($("#myDiv"));
功能的jQuery的孩子所有輸入的值
我似乎無法找到正確的組合,使功能清除作爲我的參數對象的子項的文本輸入。