-1

我的.js文件中有以下代码行

$(triggers.restart).live('click', function (e) {
  e.preventDefault();
  plugin.method.startQuiz(this);
});

该代码在 Firefox 或 Chrome 中运行良好,但在 Internet Explorer 中运行良好。可能有什么问题?

4

1 回答 1

1

在 IE 中 preventDefault 不受支持。相反,您设置返回值。这里有更多关于它的信息:event.preventDefault() function not working in IE

于 2012-05-03T23:51:48.523 回答