有一個帶有標籤的文本框;驗證了isnumeric。如何將驗證應用於Jquery中的克隆元素?
Money: <input type="text" id="dollar" name="dollar" data-require-numeric="true" value="">
//Textbox with id dollar0
在運行時,我創建了上面的克隆;通過點擊名爲add的按鈕;並且這創建了具有不同id和其他屬性的另一個文本框;說。
Money: <input type="text" id="dollar1" name="dollar1" data-require-numeric="true" value="">
//Cloned textbox; cloned by clicking on a button named clone
在兩個文本框中,data-require-numeric都是true。
問題:對於默認文本框,JQuery驗證正在執行。但對於新的克隆; JQuery沒有運行。
以下是jQuery的:
var economy= {
init: function() {
$('input[type="text"][data-require-numeric]').on("change keyup paste", function() {
check isnumeric; if yes then border red
});
}};
$(economy.init);
如何解決這個問題?
WAO。在我看來,工作。在標記答案之前讓我進行徹底的測試:) – fatherazrael
你可以解釋一下關於「更換鍵盤粘貼」這一點。 – Raghavendra
@fatherazrael,很高興爲您效勞 –