我怎样才能改变每个元素的名称?
我想改变所有元素,用jquery命名为“hiddenElement”
alle元素应该得到风格
style.display='none';
style.position='absolute';
jQuery中的语法如何?
做这个
$("[name='hiddenElement']").hide().css("position", "absolute");
尝试:
$("[name='hiddenElement']").hide().css("position","absolute");
您可以使用[attribute=value]
来选择匹配的元素
$(*[name=hiddenElement]).css({'display':none,'position':'absolute'});
链接地址: http://www.djcxy.com/p/36283.html
上一篇: how can I change the style of each element by name?
下一篇: php: multiple select box in a array with search function