var oddSum=0
//偶数和
var evenSum=0
for(var i=1i<=100i++)
{
if(i%2==0)
{
evenSum+=i
}
else
{
oddSum+=i
}
}
alert("100以内的奇数和:"+oddSum)
alert("100以内的偶数和:"+evenSum)
jQuery多个版本或和其他js库冲突主要是常用的$符号的问题,主要解决办法如下:
方法一:
<script type="text/javascript">jQuery.noConflict() //将变量$的控制权让渡给prototype.jsjQuery(function(){ //使用jQueryjQuery("p").click(function(){alert( jQuery(this).text() )
})
})
$("pp").style.display = 'none' //使用prototype</script>
方法二:
<script type="text/javascript">var $j = jQuery.noConflict() //自定义一个比较短快捷方式$j(function(){ //使用jQuery$j("p").click(function(){alert( $j(this).text() )
})
})
$("pp").style.display = 'none' //使用prototype</script>
方法三:
<script type="text/javascript">jQuery.noConflict() //将变量$的控制权让渡给prototype.js(function($){ //定义匿名函数并设置形参为$$(function(){ //匿名函数内部的$均为jQuery$("p").click(function(){ //继续使用 $ 方法alert($(this).text())})
})
})(jQuery) //执行匿名函数且传递实参jQuery$("pp").style.display = 'none' //使用prototype</script>