2
名前の入力要素にフォーム検証を挿入するポップアップコンポーネントがあります(必須フィールドと最小長3文字)。 フォームタグに完全なコードを設定せずに行うことはできますか?入力時にフォームタグのないフォーム検証 - 角度2
<div class="scenario-div">
<label style="font-size: 1.4rem; font-weight: 400; margin-bottom: 10px;">{{context.header}}</label>
<div class="" style="width: 90%; margin-bottom: 10px; align-self: center;">
<div style="display: flex; flex-direction: column; margin-bottom: 10px;">
<label style="font-size: 1.2rem; font-weight: 500;">Name</label>
<div style="display:flex; flex-direction:row;">
<input type="text" [(ngModel)]="context.name" placeholder="enter Name" style="color: #569bd2; margin: 0px; width: 50%" minlength="3" required/>
<select *ngIf="context.showScriptDropdown" class="custom-select-project" style="width:50%" #scriptSelect (change)="context.script=scriptSelect.value">
<option disabled>Select type</option>
<option value="js">javascript</option>
<option value="lua">lua</option>
<option value="py">python</option>
<option value="gy">groovy</option>
</select>
</div>
</div>
<div style="display: flex; flex-direction: column; margin-bottom: 10px;" *ngIf="!context.hideDescription">
<label style="font-size: 1.2rem; font-weight: 400;">Description</label>
<textarea rows="4" [(ngModel)]="context.description" cols="50" maxlength="250" placeholder="Enter text here" style="color: #569bd2; resize: none; font-weight: 400; font-size: 1.2rem;"></textarea>
</div>
</div>
<div>
<button class="btn-main" (click)="confirm(context)" style="width: 15%;">Confirm</button>
</div>
私はそれを取得し、value.lengthのスパンを作成しても問題ありませんが、私はまだサブミットすることができます...私の長さが3文字未満であれば、サブミットをロックする必要があります。 –
スニペットにフォームタグが表示されません – Vega
しかし、そこには何もありません。それは質問です。フォームタグなしでフォームの検証を行うにはどうすればよいですか。しかし、あなたにthaks、私はユーザーが3文字以上を入力するまで、送信ボタンを非表示にすることができます:) –