我尝试切换按钮上的名称属性,然后使用由新名称调用的函数将其切换回来。这是我的代码:
HTML
<button name="post">Post</button>
jQuery
$('button[name=post]').click(function(){
$(this).attr('name','get');
$(this).text('get');
});
$('button[name=get]').click(function(){
$(this).attr('name','post');
$(this).text('post');
});
最后但并非最不重要的一个JS FIDDLE
出于某种原因,当新名称属性启动时,第二个函数不会触发,一些指针?