JavaScript的jQuery错误在Internet Explorer中触发
以下是代码和错误消息:
网页错误的详细信息
用户代理:Mozilla / 4.0(兼容; MSIE 8.0; Windows NT 6.1; WOW64; Trident / 4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)时间戳:Wed,18 Jan 2012 20:26:33 UTC
消息:意外调用方法或属性访问。 行:3个字符:31959代码:0 URI:https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
和Jquery代码:
<script type="text/javascript">
$(document).ready(function() {
$('.small-list-items-pagination li a').click(function(e) {
e.preventDefault();
$.ajax({
type: "GET",
url: '/Noticias/FetchMiniNoticiasFromPage',
data: "page=" + $(this).text(),
dataType: "json",
success: function (data) {
$('.small-list-items li').remove();
$.each(data, function(i, val){
$(".small-list-items").append('<li>' +
'<img src="' + val.ImagenChicaUrl + '" alt="' + val.Descripcion + '"/>' +
'<a href="#">' + val.FechaDePublicacion + '</a>' +
'<p>' + val.Descripcion + '</p>' +
'<div class="horizontal-line"></div>' +
'</li>');
});
},
error: function (obj) {
alert("bad!");
}
});
});
});
</script>
任何想法有什么不对? 这在Firefox,Opera,Google Chrome中很有用。
这一行:
'@Url.Action("FetchMiniNoticiasFromPage", "Noticias")'
实际上编译为:
'/Noticias/FetchMiniNoticiasFromPage'
它可能是嵌套双引号,虽然我不能相信其他浏览器让你逃避:
url: "@Url.Action('FetchMiniNoticiasFromPage', 'Noticias')",
- 要么 -
url: '@Url.Action("FetchMiniNoticiasFromPage", "Noticias")',
或者你在尝试:
url: "@Url.Action("+FetchMiniNoticiasFromPage+", "+Noticias+")",
链接地址: http://www.djcxy.com/p/51887.html