在jsp中没有form表单的情况下怎么,能通过点击button按钮触发js方法 获得text的内容?

代码如下: 没有form的情况下。
<input type="text" name="tee" />
<input type="button" onclick="ee()">

怎样写 javascript中的方法 ,实现获得text的值。同时实现在ee方法中跳转到001.html;

求解。谢谢。

第1个回答  2015-08-12
$(btn).bind('click', function(){
var value = $(input).val();
var param = {v:value};
$.post(url,param,function(){})
});
以上列子用了jquery.
通过js获取input的值,然后通过ajax将值传到后台。当然这样做的话,你后台需要一个ajax接口来支持。post里面的url,就是你接口的地址。
第2个回答  2011-06-29
节点修改:<input type="text" name="tee" id="tee" />
函数实现:
function ee(){
var sVal = document.getElementById('tee').value;
alert(sVal);
window.location = '001.html';
}本回答被提问者采纳
第3个回答  2011-06-29
<script>
function ee(){

var ttt=document.getElementById("tee").value;//取值tee 为 input id
window.location.href="001.html";//跳转
</script>
<input type="text" name="tee" id="tee"/>
第4个回答  2011-06-29
js里面使用ajax,调用后台的java程序,然后java程序里面设置respose的网页就行了。
第5个回答  2011-06-29
function ee(){

var textValue=document.getElementById(" ni yao qu de dui xiang de id ").value.trim();
alert(textValue);
window.location.href="XXX.html"
}

不借助form表单jsp如何实现传递参数?多说几种方法。
1 get 方式,就是在xx.jsp后面加上?a=111这样的方式,例如 xx.jsp?a=111 2 cookie的方式,将参数放在cookie中,在另一个页面将cookie读出来。3 session方式,将参数放入session中,然后再另一个页面中读出来。4 数据库,比较麻烦,可以做一个参数表,将一些参数存入进取,但反复读取数据库的效率不...

JSP页面如何用JS点击按钮执行操作
在js里面写document.forms[0].action="xxx.do"; 然后在按钮里面加上onclick事件调用js里面的那个函数即可。

在一个jsp页面中如何通过点击一个按钮转到另一个jsp页面
那你就把链接改成按钮然后在上面挂个js事件就可以了。这样的效果可以:onclick="window.location='新页面'" 来实现。1.在原来的窗体中直接跳转用,代码:window.location.href="你所要跳转的页面"。2、在新窗体中打开页面用,代码:window.open('你所要跳转的页面');window.history.back(-1)。返...

用jquery如何点击button按钮调用后台方法查询数据返回到弹出框内
4、在test.html文件内,使用button标签创建一个按钮,按钮名称为“加粗文字”。5、在test.html文件中,给button按钮绑定onclick点击事件,当按钮被点击时,执行addstrong()函数。6、在js标签中,创建addstrong()函数,在函数内,通过id(testid)获得input对象,使用css()方法设置input对象内文字的font-w...

jsp页面中怎么隐藏form表单action后面的参数
假设jsp内容为:<script language="javascript" src="1.js"><\/script> <form id="myform" method="post"> <input type="text" name="name"><input type="submit" value="提交"\/> <\/form> 1.js的代码为 window.onload=function (){ var form = document.getElementById("myform");form...

jsp中年如何取得textarea的值
1:如果textarea 值提交到其他jsp页面的话可以用 <input type="button" value="取值" onclick="alert(<%=request.getParameter("tinput")%>)" \/> 获取.2:如果是本页面获得textarea输入的值的话 可以用js <input type="button" value="取值" onclick="alert(document.getElementById('tinput')...

JSP form表单的action为空,怎么提交数据?
submit" name="sub" value="111" \/> <input type="button" name="btn" value="btn" onclick="test()" \/> <\/form> <\/body> <\/html> 当点击button后,会调用test()方法,然后就是执行document.getElementById("myform").submit(); 这样,所有的input参数就可以提交到aciton中了。

在JSP中如何获取Button按钮中的Value值?
1、创建一个名称为 type_button 的html文件 。2、添加2个button按钮,一个button在点击事件中加入自定义函数 mytype_button,另一个button设置id和type属性值为“button”。3、添加一p标签,设置id 为 showtype_button。4、在javascript中创建一个自定义函数 mytype_button。5、在自定义函数中...

需求一个js 就是 选中单选框 然后点击 按钮 把选中的值 传到文本框里...
\/> asp<\/label> <label> <input type="radio" value="php" name="me" \/> php<\/label> <label> <input type="radio" value="ajax" name="me" \/> ajax<\/label><\/div><input type="button" value="提交" id="submit" \/><input type="text" id="text" \/><\/...

在html中点击按钮弹出对话框,内容取自txt文件
\/\/加载xml中的文字 (".btn").click(function(){ confirm($(".xml").text());\/\/弹出文字 });})<\/script> <body> <input class="btn" type="button" value="弹出文字" \/> <div class="xml" style="display: none;"><\/div> <\/body> <\/html> xml文件:<div>测试文字<\/div> ...

相似回答