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.
如何获取传递给 smarty 模板页面的数组的第一个元素,并在 smarty 页面中以某种方式处理它。
我用这种方式,但它不工作。
$("item_".{$categories.category_id[1]}).addClass("active");
这应该有效:
结果:
$("item_{$categories.category_id.1}").addClass("active");
尝试使用 + 运算符连接字符串
例如:
var myId = "domElement"; $("#"+myId).addClass("active");