我有一个html页面,里面有这个js:
<script language="javascript" type="text/javascript">
$(function() {
BOOKS.init({
xmlPath : "http://localhost/project/books.xml",
imgPath : "http://localhost/project/img/",
perView : 6
});
)};
</script>
然而“ $(有趣”决定消失并成为:
<script language="javascript" type="text/javascript">
ction() {
BOOKS.init({
xmlPath : "http://localhost/project/books.xml",
imgPath : "http://localhost/project/img/",
perView : 6
});
)};
</script>
知道为什么吗?
答案 0 :(得分:1)
Jian,你的代码中有syntex错误。 你的函数()的右大括号是在关闭大括号$之前。使用以下代码。我编辑了它。
$(function() {
BOOKS.init({
xmlPath : "http://localhost/project/books.xml",
imgPath : "http://localhost/project/img/",
perView : 6
});
});
使用firebug for javascript:)