私はjqueryの初心者で、これら2つのスクリプトを互いに「対話」させるにはどうすればよいか疑問に思っていました:
<form action="" method="post">
<fieldset>
<div id="selextender"></div>
<p><a href="#" id="seladd">Add</a></p>
</fieldset>
</form>
$(function () {
$('a#seladd').click(function () {
$('<p><select name="items[]"><option value="1">One</option><option value="2">Two</option><option value="3">Three</option></select><a href="#" class="remove">Remove</a></p>').fadeIn("slow").appendTo('#selextender');
return false;
});
$('.remove').live('click', function () {
$(this).parent().fadeOut(300, function () {
$(this).empty();
return false;
});
});
});
上記は私の選択ボックスを複製します - 以下を組み込んで選択ボックスオプションを動的に追加し、選択ボックスを複製するにはどうすればよいですか?
$(document).ready(function () {
$('select[name="products"]').focus(function () {
if ($('option', this).length < 2) {
$.getJSON('products.php?product=' + $(this).attr('value'), outputProducts);
}
})
});
function outputProducts(response) {
$('select[name="products"]').html(response.html).attr('selectedIndex', response.index);
return true;
}
<form action="#" method="post">
<select name="products">
<option selected="selected">Please select</option>
</select>
</form>
どんな助けでも大歓迎です、ありがとう