1

次のような要素があるとしましょう。

<input id="options_14_text" type="text" onchange="something()" name="options[14]" value="">

たとえばプロトタイプを使用して、id を options_15_text に変更するにはどうすればよいですか?

ありがとう!

4

1 に答える 1

2

You can select the element and then change its id property:

​$("options_14_text").id = "options_15_text";​​​​​​​​​​​​​​​​​​​

Or you could use writeAttribute:

​$("options_14_text").writeAttribute("id", "options_15_text");​​​​​​​​​​​​​​​​​​​​​

Here's a working example. Inspect the DOM to see that the id value has changed.

于 2012-07-25T10:03:38.487 に答える