动态生成 ID 的选择器

发布于 2024-10-14 09:21:55 字数 380 浏览 0 评论 0原文

我有一系列 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

GRAY°灰色天空 2024-10-21 09:21:55

我的想法是正确的,但分割字符串错误:

var divNum = fromInput.split(",");
divNum = DivNum[1];

然后:
...

target: "#result" + divNum

I had the right idea but split the string wrong:

var divNum = fromInput.split(",");
divNum = DivNum[1];

then:
...

target: "#result" + divNum
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文