需要知道這個標籤是什麼,然後使用名字來定位。
例如:
來獲取這個name為username的value值
$(function(){
alert($("input[name="username"]").val())
})
擴充套件資料:
jquery中的常見小技巧:
1、DOM遍歷是昂貴的,將變數快取起來。
程式碼:
var $ele = $("#ele");
var h =
$ele.height();
$ele.css("height",h-20);
2、最佳化選擇符。
$("#myid")
3、避免隱式通用選擇符。
$(".someclass input:radio")
4、避免通用選擇符。
$(".container").children()
5、儘可能保持程式碼簡潔。
if(arr.length){}
6、儘可能地合併函式。
$f.on("click", function(){
$(this).css({
"border":"1px solid
red",
"color": "blue"
});
需要知道這個標籤是什麼,然後使用名字來定位。
例如:
來獲取這個name為username的value值
$(function(){
alert($("input[name="username"]").val())
})
擴充套件資料:
jquery中的常見小技巧:
1、DOM遍歷是昂貴的,將變數快取起來。
程式碼:
var $ele = $("#ele");
var h =
$ele.height();
$ele.css("height",h-20);
2、最佳化選擇符。
程式碼:
$("#myid")
3、避免隱式通用選擇符。
程式碼:
$(".someclass input:radio")
4、避免通用選擇符。
程式碼:
$(".container").children()
5、儘可能保持程式碼簡潔。
程式碼:
if(arr.length){}
6、儘可能地合併函式。
程式碼:
$f.on("click", function(){
$(this).css({
"border":"1px solid
red",
"color": "blue"
});
});