Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我与id="row_4"
id="row_4"
我有rownum一个值为 4的 javascript 变量
rownum
如何使用 jQuery 选择这个元素?我试过了
$('#row_' + rownum)
但这似乎不起作用。
如果您没有收到任何错误,那么您可以在页面加载之前调用(如 alnitak 所暗示的)尝试放入 doucment.ready() 函数。
像这样。
$(document).ready(function(){ alert($('#row_' + rownum).text()); });