0

最初の投稿から取得したコードがあります :関数に関するヘルプが必要です

私はこのコードを修正し、私が望むように動作しようとしました.しかし、私はある点で立ち往生しました.

JSfiddle リンク : http://jsfiddle.net/saifrahu28/qzKWD/

コードは次のとおりです。

HTML

<button id="createDiv">Start</button>
<div id="results"></div>

CSS

    #createDiv, #results span { cursor: pointer; }
#results div {
    background: #FFA;
    border: 1px solid;
   width:auto;
}
#results input[type=text] {
    border: none;
    display: none;
    outline: none;
}

JS

    //  Call for document .onload event
$(function() {
    //  Normal Click event asignement, same as $("#createDiv").click(function
    $("#createDiv").on("click", function(e) {
        //  Simply creating the elements one by one to remove confusion
        var newDiv = $("<div />", { class: "new-folder" }),  //  Notice, each child variable is appended to parent
            newInp = $("<input />", { name: "inpTitle[]",style:"display:block ;border:solid 1px #fa9a34", type: "text", value: "Unnamed Group", class: "title-inp" }).appendTo(newDiv),
            newSpan = $("<span />", { id: "myInstance2",style:"display:none", text: "Unnamed Group", class: "title-span" }).appendTo(newDiv);
        //  Everything created and seated, let's append this new div to it's parent
        $("#results").append(newDiv);
    });

    //  the following use the ".delegate" side of .on
    //  This means that ALL future created elements with the same classname, 
    //    inside the same parent will have this same event function added
    $("#results").on("click", ".new-folder .title-span", function(e) {
        //  This hides our span as it was clicked on and shows our trick input, 
        //    also places focus on input
        $(this).hide().prev().show().focus();
    });
    $("#results").on("blur", ".new-folder .title-inp", function(e) {
        //  tells the browser, when user clicks away from input, hide input and show span
        //    also replaces text in span with new text in input
        $(this).hide().next().text($(this).val()).show();
    });
    //  The following sures we get the same functionality from blur on Enter key being pressed
    $("#results").on("keyup", ".new-folder .title-inp", function(e) {
        //  Here we grab the key code for the "Enter" key
        var eKey = e.which || e.keyCode;
        if (eKey == 13) { // if enter key was pressed then hide input, show span, replace text
            $(this).hide().next().text($(this).val()).show();
        }
    });
})

スタートボタンをクリックすると、名前を変更してテキストとして保存できる入力ボックスを作成します。しかし、私が望んでいるのは.. [スタート]ボタンをクリックすると、現在ここにないBLINKINGカーソルで入力が作成されます。クリックするとアクティブになります。しかし、私はそれが Created のときに点滅を開始することを望んでいます。jqueryまたはjavaスクリプトで可能ですか?

4

3 に答える 3

2

テキストボックスにフォーカスを与えるために使用する必要newInp.focus()がありますが、おそらく最後にカーソルも必要ですか?

それを達成するには、以下を使用します。

$.fn.setCursorToTextEnd = function() {
    $initialVal = this.val();
    this.val('');
    this.val($initialVal);
};

次に、次のようにします。

newInp.focus().setCursorToTextEnd();

クレジットsetCursorToTextEnd()

これをあなたのフィドルに適用しました - http://jsfiddle.net/qzKWD/3/

于 2013-05-16T14:54:12.730 に答える
2

focus()イベントを使用する必要があります。

$("#results").append(newDiv);
newInp.focus();
于 2013-05-16T14:45:56.787 に答える
1

イベントが必要ですfocus()

newDiv解決策は、に追加された要素内の入力を見つけて#results、それに焦点を当てることです。

// Inside of click handler
$("#results").append(newDiv);
newDiv.find("input").focus();

newInp別の解決策は、同じ要素に直接焦点を当てることです<input>

// Inside of click handler
$("#results").append(newDiv);
newInp.focus();

JSFIDDLE

于 2013-05-16T14:51:45.183 に答える