jqueryを使用して特定の値の入力を削除するにはどうすればよいですか?
ユーザーにする必要.remove()
があることはわかっていますが、特定の入力を見つける方法がわかりません。
$("input[value='"+value+"']").remove();
削除する要素のはどこvalue
にありますか。value
:)
フィールドにループし、<input>
各値を一致させ、一致する場合は削除します。
$(document).ready(function() {
$('input[type=text]').each(function() {
if ($(this).val() === "foo") {
$(this).remove();
}
});
});
ここでデモjsFiddle。
$(function(){
$("input[type='button']").click(function(){
$("input[type='text']").each(function(){
var $this = $(this);
if ($this.val() == "x"){
$this.remove();
}
});
});
});
関数を使用しreplaceWith()
ます。
入力ボックスの値を意味していると思いますか?
その場合はどうして...
<input id="textField" type="text" value="testValue" />
$("#textField").val("");
これで、テキストボックスの値がクリアされます。
このコードを使用するだけで、特定の入力を削除できます。
$(function(){
$("input[type='button']").click(function(){
$("input[value=x]").remove();
});
});
「hello」を含むすべての入力をDOMから削除します。
<!DOCTYPE html>
<html>
<head>
<style>p { background:yellow; margin:6px 0; }</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<p class="hello">Hello</p>
how are
<p>you?</p>
<button>Call remove(":contains('Hello')") on paragraphs</button>
<script>
$("button").click(function () {
$("input[type='text']").each(function(){
if($(this).val().toLowerCase().indexOf('hello')!=-1)
$(this).remove();
})
});
</script>
</body>
</html>