使用 Jquery 在 mvc 3 中附加表行

发布于 2024-12-11 18:32:55 字数 409 浏览 0 评论 0原文

我正在尝试使用以下 javascript 函数附加一个表格单元格:

function fn() {
    $(this).parent().parent().parent().append("<tr><td >some text</td></tr>");
}

并在表格单元格内有一个带有以下链接的链接

<a href="#" onclick="fn();">+</a>

我对 jquery 非常陌生,并且我现在只是想在表格中附加任何文本,但是当我单击表格单元格内的链接时没有任何反应。

我正在使用 MVC 和 razor,有人可以让我让它工作吗?

I am trying to append a table cell using the following javascript function:

function fn() {
    $(this).parent().parent().parent().append("<tr><td >some text</td></tr>");
}

and have a link inside a table cell <td></td> with the following link:

<a href="#" onclick="fn();">+</a>

I am very new to jquery and am just trying to append a table with any text for now but nothing is happening when I click the link inside the table cell.

I am using MVC and razor, could anyone me get this to work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

小傻瓜 2024-12-18 18:32:55

您需要将 this 传递给您的函数:

<a href="#" onclick="fn(this);">+</a>

并且

function fn(elem) {
    $(elem).closest('table').append("<tr><td >some text</td></tr>");
}

You need to pass this to your function:

<a href="#" onclick="fn(this);">+</a>

And

function fn(elem) {
    $(elem).closest('table').append("<tr><td >some text</td></tr>");
}
多彩岁月 2024-12-18 18:32:55

最好不要使用内联 javascript,而是使用 jQuery 将事件绑定到锚标记。例如:

HTML

<a href="#" id="addnewrow">+</a>

Javascript

$("#addnewrow").click(function(){
    $(this).closest("table").append("<tr><td >some text</td></tr>");
});

我将 id 添加到锚标记只是作为示例。您可以使用任何您想要定位锚标记的选择器。 (即$(“表a”))

It would be better to not use inline javascript and instead bind the event to the anchor tag using jQuery. For example:

HTML

<a href="#" id="addnewrow">+</a>

Javascript

$("#addnewrow").click(function(){
    $(this).closest("table").append("<tr><td >some text</td></tr>");
});

I added the id to the anchor tag just as an example. You can use whatever selector you would like to target the anchor tag. (ie $("table a"))

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