31 lines
557 B
JavaScript
31 lines
557 B
JavaScript
// JavaScript Document
|
|
(function( $ ){
|
|
|
|
$.fn.inputbg = function( options ) {
|
|
|
|
var settings = $.extend( {
|
|
val : '姓名'
|
|
}, options);
|
|
|
|
this.each(function() {
|
|
if($(this).val() == '')
|
|
{
|
|
$(this).val(options.val);
|
|
}
|
|
console.log($(this).attr('name'));
|
|
$(this).bind('focus',function(){
|
|
if($(this).val() == options.val)
|
|
{
|
|
$(this).val('');
|
|
}
|
|
});
|
|
$(this).bind('blur',function(){
|
|
if($(this).val() == '')
|
|
{
|
|
$(this).val(options.val);
|
|
}
|
|
});
|
|
});
|
|
|
|
};
|
|
})( jQuery ); |