$('#queryPerformanceForm').attr("action","option2.action"); //修改form的action
$(“img”). removeAttr(“height”); //去除圖片高度
$("#infomore").hide();//隱藏
$("#infomore").show();//顯示
$("#infomore").css("display")=="none" //表達式,css屬性
$("#infomore").css("display","none"); //給特定ID,設置css屬性
$("#city").empty(); //判斷是否為空
$("#cityid").val(0); //設值
$("#discount").focus(); //獲得焦點
$("#costpre_error").html(""); //設置值
var obj = $("input[name='photo']"); //jquery name選擇器
//異步請求方式
$.ajax({
type: 'POST',
url:'url',
dataType:'json',
async:false,
data:{modulesign:selectedModule,id:id},
success:function(data){
$("#cate_div").html(data.html);
...
}
});
//頁面加載完執行
$(document).ready(function() {
...
});
posted on 2012-11-06 13:43
老天 閱讀(108)
評論(0) 編輯 收藏