动态生成 ID 的选择器
我有一系列 div,其中 id 用常规标记:
<div id="result<%=order.ID %>">
提交表单的处理程序可以通过以下方式找出 order.ID:
fromInput.split(",")[1]
那么我如何将该元素与 DIV id 的静态部分连接起来?
$('#frmchooseOptions').ajaxSubmit({
beforeSubmit: checkReady,
target: "#result" + fromInput.split(",")[1]
});
谢谢
I have a series of div where the id is tagged with the conventional:
<div id="result<%=order.ID %>">
The handler that submits the form can find out what order.ID is via:
fromInput.split(",")[1]
So how do i get that element concatenated with the static part of the DIV id?
$('#frmchooseOptions').ajaxSubmit({
beforeSubmit: checkReady,
target: "#result" + fromInput.split(",")[1]
});
mny thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的想法是正确的,但分割字符串错误:
然后:
...
I had the right idea but split the string wrong:
then:
...