jQuery提示和技巧
句法
数据存储
优化
杂
这一个去Kobi。
考虑下面的代码片段:
// hide all elements which contains the text "abc"
$("p").each(function ()
{
var that = $(this);
if (that.text().indexOf("abc") > -1) that.hide();
});
这是一个速记...这是一个快两倍的速记:
$("p.value:contains('abc')").hide();
为折叠上方的元素添加选择器
作为一个jQuery选择器插件
$.extend($.expr[':'], {
"aboveFold": function(a, i, m) {
var container = m[3],
var fold;
if (typeof container === "undefined") {
fold = $(window).height() + $(window).scrollTop();
} else {
if ($(container).length == 0 || $(container).offset().top == null) return false;
fold = $(container).offset().top + $(container).height();
}
return fold >= $(a).offset().top;
}
});
用法:
$("p:aboveFold").css({color:"red"});
Thx到scottymac
(这是一个无塞的插头)
通过添加与表单相关的方法,您可以尝试使用我编写的插件来增加jQuery的流畅API,而不是编写重复的表单处理代码。
// elementExists is also added
if ($("#someid").elementExists())
alert("found it");
// Select box related
$("#mydropdown").isDropDownList();
// Can be any of the items from a list of radio boxes - it will use the name
$("#randomradioboxitem").isRadioBox("myvalue");
$("#radioboxitem").isSelected("myvalue");
// The value of the item selected. For multiple selects it's the first value
$("#radioboxitem").selectedValue();
// Various, others include password, hidden. Buttons also
$("#mytextbox").isTextBox();
$("#mycheck").isCheckBox();
$("#multi-select").isSelected("one", "two", "three");
// Returns the 'type' property or 'select-one' 'select-multiple'
var fieldType = $("#someid").formElementType();
链接地址: http://www.djcxy.com/p/95401.html