-1

我希望 JavaScript 为单击的当前字段更改文本字段的设计。

我只想拥有一个功能来执行此操作并更新当前字段 onclick 的元素 ID。

因此,可以有一个函数获取当前单击字段的元素 ID 并将其保存为一个对象,另一个函数可以更改字段的设计。

我不希望这个函数只用于一个字段,所以 getElementsById 不起作用..

4

1 回答 1

1

尝试使用这个 aa 基地

// set the binding first, on all input elements or target it somehow
document.getElementsByTagName('input').onclick = function(){

    var savedId = this.id;   // save the current id somewhere
    this.id = 'NEW_ID';      // set the new id
    // manipulate the element design as you wish

}

不过,您不应该更改元素的 ID。尝试添加删除类或其他内容。

于 2013-06-22T20:25:23.160 回答