我想知道如何才能正确设置事件的目标操作?在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。任何有关这方面的帮助将不胜感激。感谢。
答案 0 :(得分:1)
尝试alert(e.target.getAttribute('action'))