0
我將動態添加元素添加到我的視圖中,並使用jquery attr函數添加它們的屬性,如下所示。如何爲動態添加的html元素設置setCustomValidity()
var input = $("<input type='text' name='"+inputFieldName+"' '>");
input.attr("placeholder", "Required");
input.attr("required" , true);
input.appendTo(container);
由於我已將required
設置爲true,因此我正在獲取默認html消息。如何將setCustomValidity
設置爲某些自定義消息。我有以下問題:
- 我可以使用jquery
attr
我需要調用一個單獨的函數標記。 - 如果我需要創建一個seaparate功能,應該怎麼做呢
'input [0]'是指什麼? –
我已經添加了'input [0] .setCustomValidity(「this custom」);'但我得到了默認值。 –