在jQuery中引用asp.net控件的最佳实践

我在jQuery中看到了4种或更多种引用asp.net控件的方法

$( “输入[ID $= ‘TXT1’]”);要么
$(“#<%= txt1.ClientID%>”);要么
$( “#TXT1”);要么
或使用类访问

你能指导在哪种情况下选择哪一个

最佳答案 这里是
a great discussion about this topic,特别是关于加速endsWith选择器的性能(也可以在评论中查看一些替代解决方案).

点赞