0
以下のコードをtextareaから取得するために使用しましたが、取得できません。考える は動的でテキストエリアのコードです:考えるDynamic Textareaから値を取得できません
<form name="myForm">
<textarea name="fname" <%#!((GPNS.BusinessLayer.SpecialItems.SpecialItem)Container.DataItem).Code.Equals("OTH", StringComparison.InvariantCultureIgnoreCase) ? "style='display: none;'" : string.Empty%> id="text<%#((GPNS.BusinessLayer.SpecialItems.SpecialItem)Container.DataItem).ID%>" maxlength="50" placeholder="Enter other item details"></textarea>
</form>
はTEXTAREAボックスから値を取得するために私の関数である。
function ValidateData() {
if ($("textarea").is(":visible")) {
//var x = document.forms["myForm"]["fname"].value;
var x = document.getElementsByName("fname").value;
if (x == null || x == "") {
alert("Please Enter Other Item Details");
return false;
}
}
else return true
}
テキストエリアの名前がコード内で使用している名前と同じであることを確認します。右クリック>要素の検査>テキストエリアに移動し、名前を確認します。 –
はいそれは記述と同じです。 – Developer