-2
ボタンがあります。このように:私はtwo
とsix
をクリックした場合JavaScript:2つのボタンの間でテキスト値を変更する
one
two
three
four
five
six
は、順序は次のように変更されました:
one
six
three
four
five
two
ボタンがあります。このように:私はtwo
とsix
をクリックした場合JavaScript:2つのボタンの間でテキスト値を変更する
one
two
three
four
five
six
は、順序は次のように変更されました:
one
six
three
four
five
two
私はこれでした:
$(document).ready(function(){
var change ="a";
$("button").bind("click",function(){
if(change == "a"){
$(this).attr("id",change);
change =$(this).text();
}else{
$("#a").text($(this).text());
$(this).text(change);
change ="a";
$("#a").removeAttr("id");
} })
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<button>one</button>
<button>two</button>
<button>three</button>
<button>four</button>
<button>five</button>
<button>six</button>
あなたは私たちを見ることができますこれまでに何をしていますか? –
@ShadowFiend HTMLを作成するだけです。すべてのボタン、クラス名でボタン " – Zen
@Zen私たちにコードを表示しないと助けにならない – Avery246813579