本文介绍了使用jQuery获取边框样式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用jQuery获取边框样式。以下是无效的
How can i get border style with jQuery. The following is not working
$('#get').click(function() {
var x = $('div').css('borderStyle');
alert(x)
})
检查 p>
Check http://jsfiddle.net/s7YAN/31/
推荐答案
alert($("div.myel").css("border-top-style"));
似乎您无法一次完成整个边框样式。你需要明确说明你想要的部分。
It seems that you're unable to get the whole border style in one go. You need to explicitly state which part of it you want.
这篇关于使用jQuery获取边框样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!