jQuery获取css z-index在各种浏览器中的返回值_jquery

测试代码:

复制代码 代码如下:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="GBK" />
<meta http-equiv="Content-Type" content="text/html; charset=gbk" />
<title>jQuery Css Test</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
alert(typeof jQuery('#csszindex').css('z-index'));
});
</script>
</head>
<body>
<span id="csszindex" style="z-index:100px;">test</span>
</body>
</html>

弹出框显示信息:

IE8:

IE7:

IE6:

Firefox:

Chrome:

Opera:

后面的几个都一样,都返回的是String类型的。

时间: 2024-09-14 16:43:25

jQuery获取css z-index在各种浏览器中的返回值_jquery的相关文章

jquery获取css的color值返回RGB的方法_jquery

本文实例讲述了jquery获取css的color值返回RGB的方法.分享给大家供大家参考,具体如下: css代码如下: a, a:link, a:visited { color:#4188FB; } a:active, a:focus, a:hover { color:#FFCC00; } js代码如下: var link_col = $("a:link").css("color"); alert(link_col); // returns rgb(65, 136,

jQuery获取复选框被选中数量及判断选择值的方法详解_jquery

本文实例讲述了jQuery获取复选框被选中数量及判断选择值的方法.分享给大家供大家参考,具体如下: 获取复选框被选中值 <input type="button" id="btn5" value="获得选中的所有值"> <input type="text" name="dd" id="dd" size="50" /> $("#btn5&

java-为何数据接口在浏览器中无法返回数据,却能在AndroidStudio的代码中返回

问题描述 为何数据接口在浏览器中无法返回数据,却能在AndroidStudio的代码中返回 我按照书上,调用"http://www.weather.com.cn/data/list3/city.xml "这个地址,用以返回城市和城市对应的代码,在app中是能获得数据,且数据结果与预期完全一致,但如果把地址贴到浏览器(我使用的是Chrome)中,就会报错?请问为什么? 解决方案 http://www.weather.com.cn/data/list3/city.xml 返回的是 : &q

struts-急求使用jquery提交的请求回调函数接收不到后台返回值解决办法

问题描述 急求使用jquery提交的请求回调函数接收不到后台返回值解决办法 $.ajax({ type: "post", url: uri, async:true, data: data, success: function (result) { $("#showrecord").append(result); }, error:function(XMLResponse){ alert("wait a minute"); } }); 后台: Ht

php-在不同浏览器中,返回的function_exists(&amp;amp;#39;uc_pm_checknew&amp;amp;#39;)值不同

问题描述 在不同浏览器中,返回的function_exists('uc_pm_checknew')值不同 在discuz中,在页面forum_forumdisplay.php 中调用方法 [code="php"] var_dump(function_exists('uc_pm_checknew')); [/code] 用firefox,显示为true: 而用chrome 打开, 显示为false 于是 将 uc_pm_checknew 方法所在的文件, 重新载入. 这时 两个浏览器都返

jQuery获取CSS样式中的颜色值的问题,不同浏览器格式不同的解决办法_jquery

使用jQuery获取样式中的background-color的值时发现在获取到的颜色值在IE10以下版本中是以HEX格式显示[#ffff00],而IE10,.Chrome.Firefox中则是以GRB格式显示[rgb(255,0,0)],由于需要对颜色值进行判断处理,所以需要得到统一的颜色格式,最好是HEX格式的,方便处理点.搜索了一下,从国外的一个网站上得到一段代码: 复制代码 代码如下: $.fn.getHexBackgroundColor = function() {    var rgb

jquery获取css颜色值返回RGB应用

代码如下:  代码如下 复制代码 a, a:link, a:visited { color:#4188FB; } a:active, a:focus, a:hover { color:#FFCC00; } js代码如下:  代码如下 复制代码 var link_col = $("a:link").css("color"); alert(link_col); // returns rgb(65, 136, 251) jquey貌似设置颜色,使用的是rgb格式的. 用以

jquery 获取css值

jquery的css格式为("属性","参数") 如果要获取width的百分比输入以下代码就可以了 math.round(($("#js_top_ment").width()/$(document).width())*100) 方法二 var cssrules=document.stylesheets[0].cssrules||document.stylesheets[0].rules;     alert(cssrules[0].style.c

jQuery获取页面及个元素高度、宽度的总结——超实用_jquery

下面把jQuery获取页面及个元素高度.宽度的方法汇总,分享给大家. 获取浏览器显示区域(可视区域)的高度 :   复制代码 代码如下: $(window).height(); 获取浏览器显示区域(可视区域)的宽度 : 复制代码 代码如下: $(window).width(); 获取页面的文档高度   复制代码 代码如下: $(document).height(); 获取页面的文档宽度 : 复制代码 代码如下: $(document).width(); 浏览器当前窗口文档body的高度:  复制