zer*_*kms 16

它意味着 - 选择属性以字符串开头的所有tr元素idmessage

http://api.jquery.com/attribute-starts-with-selector/


rik*_*iku 7

[]是指元素的属性(id为1),id^是一个通配符,表示id必须以"message"开头.


Jay*_*ard 6

它表示具有以"message"开头的id的表行:

$('tr // a table row
[id //having an id 
^="message"]') // starting with 'message'
Run Code Online (Sandbox Code Playgroud)

http://api.jquery.com/category/selectors/attribute-selectors/