What is "this"?
In many object-oriented programming languages, this (or self) is a keyword which can be used in instance methods to refer to the object on which the currently executing method has been invoked. this
這裏的this實際上是一個Html 元素(textbox),textbox有text屬性,因此這樣寫是徹底沒有什麼問題的。
可是若是將this換成$(this)就不是那回事了,Error–報了。
Error Code: .net
這裏的$(this)是一個JQuery對象,而jQuery對象沒有title 屬性,所以這樣寫是錯誤的。
JQuery擁有attr()方法能夠get/set DOM對象的屬性,因此正確的寫法應該是這樣:
正確的代碼: code
http://www.jb51.net/article/57376.htmhtm