私のcontroller.jsでは、私は機能しました:
$(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 ではまったく機能しません。何か提案はありますか?