我正在使用实体框架和 MVC3,我在视图中使用了以下 Jscript。
该脚本在 Crome 浏览器中完美运行,但不能在 firefox 浏览器(v 15.0.1)中运行...怎么办?
<script type="text/javascript">
$(document).ready(function () {
$('.RemarkBox').hide();
$('a.addremark').click(function () {
var url="@Html.Raw(Url.Action("ShowCommentBox", "Comment", new { Id = "idValue", EntityType = "Location" }))";
url=url.replace("idValue",event.target.id);
$('.RemarkBox').load(url);
$(this).closest('div').find('div.RemarkBox').slideToggle();
return false;
});
});
</script>