jquery判断字符串中是否包含特定字符的方法var Cts = "bblText";
if(Cts.indexOf("Text") >= 0 ) {
alert('Cts中包含Text字符串');
}
html页面:<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<script type="text/javascript" src="jquery-1.8.2.min.js"></script
范例:注意使用delegate
/ajax判断会员登录
$(function ($) {
var screenWidth = $(window).width();
if (screenWidth < 1024) {
jquery距离底部100象素时层消失
$(window).scroll(function() {
var x = $(document).scrollTop() + $(window).height() - $("#scrolltip").height();
if (x + 100 > $(document).height()) {
$("#scrolltip").hide();
} else {
$("#scrolltip").show();
}
});
$(function(){
var SWidth = $(window).width();
if(SWidth >= 1024 ){
$("#second_nav .scroller").removeAttr("style");
$(function(){
var lefttoolH = $("#lefttool .left-stick-wp").offset().top;
$(window).scroll(function(){
var scroH = $(this).scrollTop();
苗景云的博客
<< 向左走,向右走 >>
<< 向左走,向右走 >>