如何获得值?
使用选择器:
$(“a”) // Get all a-elements
$("#id") // Get all elements with the id “id”
$(".class") // Get all elements with the class “class”
使用下面的方法获得值:
$val = $("#HfId").val(); // Get
$("#HfId").val(""); // Clear
$("#HfId").val($newVal); // Set