在 jquery onclick 事件中,我修改了 dom,然后提交它在 Firefox 中不起作用,但在 Chrome 和 IE 中运行良好。
function test(){
$('#b2').remove();
var form = document.getElementById("123");
form.submit();
}
$(function() {
$('#b1').on('click', test);
});
这里有最小的测试用例http://jsfiddle.net/Tjtjv/ 点击按钮测试它应该加载页面http://jsfiddle.net
我怎样才能让它在 Firefox 中像在 Chrome 和 IE 中一样工作