不输入数据,怎么提交数据呢.<button dojoType="Button" widgetId="helloButton">Hello World!</button>
<br>
请输入名称: <input type="text" id="name">
Postfunction helloPressed()
{
dojo.io.bind({
url: 'response.txt',
handler: helloCallback
});
}
替换为:function helloPressed()即可.其中的url不用说也明白了吧.是相对路径.也就是说在HelloWorld.html的当前目录
{
dojo.io.bind({
url: 'HelloWorldResponseGET.jsp',
handler: helloCallback,
content: {name: dojo.byId('name').value }
});
}
下应该有一个 HelloWorldResponseGET.jsp 文件. handler还是一样,处理返回的数据,
如果有的话.
content即为要发送的数据. 其中名称为name,name的值为你所输入的值.
这样,我们可以在jsp中写入简单的代码来获得这个值,以下为jsp中的代码<%
/*
' HelloWorldResponseGET.jsp
' --------
'
' 打印name的值.
'
*/
response.setContentType("text/plain");
%>Hello <%= request.getParameter("name") %> ,欢迎来到dojo世界!
dojo代码为:<button dojoType="Button" widgetId="helloButton">Hello World!</button>
<br>
<form id="myForm" method="POST">
请输入名称: <input type="text" name="name">
</form>
这里将content属性变为了formNode属性.function helloPressed()
{
dojo.io.bind({
url: 'HelloWorldResponsePOST.jsp',
handler: helloCallback,
formNode: dojo.byId('myForm')
});
}
http://dojo.jot.com/WikiHome/Tutorials/HelloWorld
新闻热点
疑难解答