在我controller.js我已經功能:Firefox中的jQuery的點擊功能一點兒也不工作,MVC3
$(MyModel.addMyButtonTag).live("click", function() {
MyModel.addRecord();
});
,並在我的model.js我有:
var MyModel = {
addMyButtonTag: "#AddButton",
addRecord: function() {
//Show modal
$(MyModel.addMyButtonTag).modal();
$('#simplemodal-container').css('height', '230px');
$('#simplemodal-container').css('min-height', '0');
}
}
這些jquery在IE8-9中運行良好,但在Firefox中它們根本不工作。有什麼建議嗎?
live()不推薦使用...使用on()代替 – Elen