读书人

页面js代码没执行

发布时间: 2013-06-19 10:26:41 作者: rapoo

页面js代码没有执行
<script>
$("#narrowBy h2").each(function () {
$(this).click(function () {
$(this).toggleClass('down').next('.options-wrap').children('.options').slideToggle('fast').next().toggle();
$(this).next('.options-wrap').css('paddingBottom', $(this).hasClass('down') ? 0 : 9);
});
});

$("#narrowBy p a:not(.more)").click(function () {
$(this).toggleClass("nsSelected");
});
</script>

页面js代码没执行 JavaScript
[解决办法]

<script type="text/javascript">
$(document).ready(function () {
$(this).click(function () {
$(this).toggleClass('down').next('.options-wrap').children('.options').slideToggle('fast').next().toggle();
$(this).next('.options-wrap').css('paddingBottom', $(this).hasClass('down') ? 0 : 9);
});
});

$("#narrowBy p a:not(.more)").click(function () {
$(this).toggleClass("nsSelected");
});
</script>

[解决办法]
错了
<script type="text/javascript">
$(document).ready(function () {
$(“#narrowBy h2“).click(function () {
$(this).toggleClass('down').next('.options-wrap').children('.options').slideToggle('fast').next().toggle();
$(this).next('.options-wrap').css('paddingBottom', $(this).hasClass('down') ? 0 : 9);
});
});

$("#narrowBy p a:not(.more)").click(function () {
$(this).toggleClass("nsSelected");
});
</script>

读书人网 >asp.net

热点推荐