1

我想知道如何正确设置事件的目标操作?在javascript中的事件处理函数中,我有

    alert(e.target.getAttribute('action')); // Outputs correctly
    alert(newAction); // Outputs newAction correctly
    e.target.setAttribute('action',newAction); // Seems to be the problem
    alert(e.target.action); // INCORRECT: Has some url prefixed to newAction

新动作警报显示一些 url+newAction,但我只想要 newAction。对此的任何帮助将不胜感激。谢谢。

4

1 回答 1

1

尝试alert(e.target.getAttribute('action'))

于 2012-05-11T01:25:50.983 回答