0

以下のようなテキストボックス要素があります。

<input type="text"  class="url" id="url" name="url" contenteditable="true"  style=" text-align: left; height: 30px; width:512px; " placeholder="Enter URL ..."/></input>

ユーザーがボタンクリックアクションを実行すると、呼び出された関数でテキストボックスのIDを変更したい。

のようなものはありますか

document.setElementID?

私はすでに入力要素を作成しているので、これは役に立ちません:

var hiddenInput = document.createElement("input");
    hiddenInput.setAttribute("id", "uniqueIdentifier");
4

1 に答える 1