删除功能在firefox浏览器中被调用onclick,但在chrome浏览器中没有。我错过了一些明显的事情吗?
<button id="button_5875418" class="small-button" onclick="remove('5875418','0','551130','http://www.google.com');"><span><em>Remove</em></span></button>
答案 0 :(得分:1)
由于正在使用的函数名称导致问题。我将函数名称从'remove'重命名为'removeItem',它现在可以在Chrome中运行(以及在FF中)。显然'remove'是jquery中的内置函数,导致删除按钮在chrome中消失而不是调用我们定义的函数。