jQuery 기반 입력 상자 의 값 없 이 지정 한 데이터 의 구현 코드 를 자동 으로 표시 합 니 다.

【해결 방안】1.준비 작업(1)입력 상자
 
<input type="text" name="searchText" title=" " />
(2)CSS 코드
 
input.helpText { color: #aaa;}
(3)전환 방법
 
function switchText()
{
if ($(this).val() == $(this).attr('title'))
$(this).val('').removeClass('helpText');
else if ($.trim($(this).val()) == '')
$(this).addClass('helpText').val($(this).attr('title'));
}
(4)구체 적 실현
 
$('input[type=text][title!=""]').each(function() {
if ($.trim($(this).val()) == '') $(this).val($(this).attr('title'));
if ($(this).val() == $(this).attr('title')) $(this).addClass('helpText');
}).focus(switchText).blur(switchText);

$('form').submit(function() {
$(this).find('input[type=text][title!=""]').each(function() {
if ($(this).val() == $(this).attr('title')) $(this).val('');
});
});
2.참고 문장http://webservices.blog.gustavus.edu/2008/06/23/text-input-example-text-with-jquery/

if ($ != jQuery) {
$ = jQuery.noConflict();
}
var isLogined = false;
var cb_blogId = 77920;
var cb_entryId = 1941349;
var cb_blogApp = "xhzi";
var cb_blogUserGuid = "669048cb-f4e2-df11-ac81-842b2b196315";
var cb_entryCreatedDate = '2011/1/21 16:22:00';

좋은 웹페이지 즐겨찾기