1.Selector
取input?嘶`name??go的值
$("input[@name=go]").val(); //原本在 jQuery 1.2.x 上是可行的'
$("input[name=tag]").val(); //但1.3.x後要把@拿掉,不然??出?e
其他原本有加@都要去掉,像[@selected][@checked]等
p.s
[attribute]: 有指定的?傩?
[attribute=value] :?傩灾??value
[attribute!=value] :?傩灾挡缓?value
[attribute^=value] :?傩蚤_?^字串??value
[attribute$=value] :?傩越Y尾字串??value
[attribute*=value] :?傩灾蛋?含value
remark: [attribute=value]?c[attribute*=value]看起?砗芟瘢?但?是有不同
一??是完全符合,一??是有包含,有看到有人??後者是取多??,???是不正?_的
remark:
不知?楹? 用[name='test']?r,如果全是span是ok的
但如果有??<a name=test>或input 就??只找到?@一??
另外
$("XmlParentNode XmlChildNode[name='xx']").xx <==?@?佑? 好像??找?e
$("XmlParentNode").find("XmlChildNode[name='xx']").xx 才??找??
References:
3 Quick Steps for a Painless Upgrade to jQuery 1.3