📜  名称选择器 jquery - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:18.698000             🧑  作者: Mango

代码示例2
$('td[name ="tcol1"]')   // matches exactly 'tcol1'
$('td[name^="tcol"]' )   // matches those that begin with 'tcol'
$('td[name$="tcol"]' )   // matches those that end with 'tcol'
$('td[name*="tcol"]' )   // matches those that contain 'tcol'