使用 Jquery 在 mvc 3 中附加表行
我正在尝试使用以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将
this
传递给您的函数:并且
You need to pass
this
to your function:And
最好不要使用内联 javascript,而是使用 jQuery 将事件绑定到锚标记。例如:
HTML
Javascript
我将 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
Javascript
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"))