Posted on 2009-08-05 12:36
非洲小白脸 阅读(406)
评论(0) 编辑 收藏 所属分类:
AJAX + jQuery
jQuery(javascript)中对html对象的操作:
$("input[@name=prj]").val():取得input标签下面的属性等于prj的对象的值。
<html:text name="Form" property="prj"/>
$("select[@name=sub]").val():取得select标签下面的属性等于sub的对象的值。
<html:select name="Form" property="sub" />
$('#proId').attr("value", value1):JSP中ID为proId的对象,将它的值赋为value1。
$('#proId').attr("disabled", "true"):设置为不能编辑。
$('#proId').removeAttr("disabled"):设置为可编辑。
jQuery中$('#proId') 等同于 javascript中document.getElementById("proId");