在jquery中我試圖清除一個字段,但是如果我這樣做,它會拋出一個錯誤。它確實使字段變空,但也會引發錯誤。我該如何解決這個問題?如何清除jQuery中的輸入文件字段?
感謝
HTML
<input name="file" type="file" accept="image/*">
JS
var input = $("#profile-edit-form").find("input[name=file]");
var fileName = input.val();
if(fileName) { // returns true if the string is not empty
input.replaceWith(input.val('').clone(true));
}
ERROR
NotFoundError: Node was not found
-jquery.min.js:3:0
你能重現錯誤還是提供更多上下文? – undefined 2015-02-08 20:13:06