現在、ID を介して別の領域の値を取得して、#delivery_prices
セクションに追加しようとしています。これを行う正しい方法は何ですか?
#shipping_methods
ドロップダウン
#delivery_price
はdivです
$('#delivery_price').html($('#shipping_methods').val());
現在、ID を介して別の領域の値を取得して、#delivery_prices
セクションに追加しようとしています。これを行う正しい方法は何ですか?
#shipping_methods
ドロップダウン
#delivery_price
はdivです
$('#delivery_price').html($('#shipping_methods').val());
val()
span、div、td などのコンテナーにメソッドを使用しないでください。html()
またはtext()
メソッドを使用します。
$('#delivery_price').html($('#shipping_methods').html());
これを読んで、val
との違いについてよりよく説明してくださいtext
。