(function ($) {
$.fn.Conniction_With_DB = function() {
this.focusout(function() {
var Val = this.val();
alert(Val);
};
})(jQuery);
叫我的插件:
<script src="../js/jquery.js" type="text/javascript"></script> // jquery API
<script src="../js/JQ_Plug_Ins.js" type="text/javascript"></script> // jquery Plugin
<script type="text/javascript">
$(function() {
$('input:text').Conniction_With_DB();
});
</script>
的問題是:爲什麼沒有我的插件迴應,當我打電話了嗎?
PS:我認爲,在插件中的錯誤是在該部分(this.focusout
)....
或在本部分($('input:text')
)調用插件....
什麼版本的jquery? .focusout被加入1.4 –