2013-01-23 53 views
0

我有一個字段,單擊時運行JQuery腳本。這是一種形式的領域。獲取JQuery腳本運行時字段選項卡到

但是,如果該字段已選中,我需要腳本運行,因爲有些用戶喜歡這樣做。

這是目前我的腳本

Query(function($){ 
$('span.website input.url').one("click", function() { 
$('span.website input.url').val($('span.website input.url').val() + 'http://');}) 
}); 

我怎樣才能改變這種工作的字段標籤來?

謝謝!

回答

8

我想你需要綁定到focus而不是click

$('span.website input.url').one("click"... 

$('span.website input.url').one("focus"... 
+0

這工作!萬分感謝! – collin

0

的代碼分配該功能同時點擊和焦點或「標籤」事件可能會像這樣一個

Query(function($){ 
    function aName() { 
     $('span.website input.url').val($('span.website input.url').val() + 'http://'); 
    } 
    $('span.website input.url').one("click", aName); 
    $('span.website input.url').one("focus", aName); 
}); 

讓我知道它是否適用於您。

相關問題