$(文档).ready(函数() {
$("a").click(function() {
$("#decimal").val('这是一个例子');
$("#inputtext").val('控制文本');
});
/*
$("a").click(function() {
警报(“世界你好!”);
});
*/
});
函数转换为十进制(){
$.ajax({
类型:“获取”,
url: "/jqueryjsp/response",
数据: "key=" + $("#key").val(),
数据类型:“html”,
成功:函数(xml){
//alert( "按键代码:" + $("key",xml).text() );
/*
var 小数 = document.getElementById('decimal');
小数.value = $("key",xml).text();
//等价于上面的代码。
$("#decimal").val($("key",xml).text());
*/
$("#decimal").val($("key",xml).text());
$("# rating").html("按键代码:" + $("key",xml).text());
}
})
清除();
}
函数清除(){
var key = document.getElementById("key");
key.value="";
//alert("按键代码:" + $(this).html() );
}
jquery在php中使用的例子很多,但是没有jsp的,
我修改了ajax在java中的第三章的例子,应用了jquery实现了ajax