我的jsp中有以下代码片段,但它没有调用addCustomer函数。
<s:a href="javascript:addCustomer()">Add Customer</s:a>
我错过了使用s:标签的内容吗?
html代码生成了对s的引用:标签是
<a href="javascript:addCustomer();" tabindex="-1">Add Customer</a>
虽然当我使用下面的代码片段javascript函数被执行。我不知道使用s:a tag?
的问题<a href="#" onclick = "addCustomer();">Add Custome</a>
答案 0 :(得分:0)
尝试这三个..
1
<s:url value="http://www.mkking.com" var="mkyongURL" />
<s:a href="%{mkyongURL}">J2EE web development tutorials</s:a>
2
<s:a href="http://www.google.com">Google search engine</s:a>
3
<s:url action="aTagaAction.action" var="aURL" />
<s:a href="%{aURL}">aTagAction</s:a>
答案 1 :(得分:0)
试试这个..
<a href="#" onclick = "myfunction(12);">Click</a>
javascript功能
function myfunction(var1)
{
var params =var1; //values for passing to struts if any
var resultStringX = $.ajax({
type: "POST",
url:"mystruts2action.action", // struts2 action call
data: params,
async: false
}).responseText;
resultStringX=$.trim(resultStringX); // the returning result will be stored in resultStringX variable
}