如何从VB.Net中的stringBuilder
调用javascript中的函数?
代码:
oSB.Append("<table id= '" + table_id + "' class='sortable' ><thead><tr><th class=border onclick='sort()'>" + "Name" + "</th><th class=border>" + "Duration" + "</th><th class=border>" + "State" + "</th><th class=border>" + "Party" + "</th><th class=border>" + "Year" + "</th></tr></thead>")
这是一种正确的方法吗?
答案 0 :(得分:0)
您应该通过javascript / jQuery为您分配处理程序,而不是使用过时的onclick
属性。这样可以更好地分离问题。
首先从代码中删除onclick="sort()"
,然后将此jQuery代码添加到页面中:
$(".sortable th:first").click(function() {
// do something...
});
答案 1 :(得分:0)
您可以删除内联onclick
事件..并使用jquery click
事件
$(".sortable th:first").click(function() {
// do your stuff
});