Wie kann ich die Option „Bitte auswählen...“ in Kontaktformular 7 deaktivieren?HTML

HTML-Programmierer
Anonymous
 Wie kann ich die Option „Bitte auswählen...“ in Kontaktformular 7 deaktivieren?

Post by Anonymous »

Wie kann ich die Option „Bitte auswählen…“ in meinem Dropdown-Menü nicht auswählbar machen? Ich programmiere in diesem Formulartester für bedingte Felder des Kontaktformulars 7. Dies ist ein Beispielteil meines Codes ohne bedingten Code der Einfachheit halber:

Code: Select all

How far along is the borrower in acquiring the property?
The borrower… *

[select* property-ownership-how-far-along-is-the-borrower-in-
acquiring-the-property-the-borrower first_as_label
"Please select…"
"is still looking for a property to acquire."
"has identified the property."
"has made an offer to purchase the property."
"has the property under contract to purchase."
"already owns the property."]
Ich weiß, dass „first_as_label“ genau das tun soll, worüber ich mich beschwere, aber das ist es im wahrsten Sinne des Wortes nicht. Ich kann immer noch „Bitte auswählen…“ auswählen.
Bearbeiten: Ich habe die Lösung gefunden, füge das folgende Skript an einer beliebigen Stelle in deinem Code ein und ersetze „first_as_label“ durch „class:wpcf7-select“ (aber denke daran, „Bitte auswählen...“ in die erste Option zu ändern ist).

Code: Select all

(function ($) {
'use strict';
$(document).ready(function () {
var $select = $('.wpcf7-select');
$select.each(function(e){
var first_option = $(this).find('option').first();
if(first_option.attr('value') == 'Please select…'){
first_option.attr('disabled', true);
}
})
});
})(jQuery)

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post
  • So erhalten Sie einen Stringwert für die Option Auswählen anstelle von Objekt: 1 usw. usw.
    by Anonymous » » in HTML
    0 Replies
    23 Views
    Last post by Anonymous
  • HTML auswählen - Die ausgewählte Option nach Wert ändern mit JavaScript
    by Anonymous » » in HTML
    0 Replies
    15 Views
    Last post by Anonymous
  • Dropdown -Option Value Value Codesigniter 4 auswählen
    by Anonymous » » in Php
    0 Replies
    51 Views
    Last post by Anonymous
  • HTML -Tags auswählen und Option
    by Anonymous » » in HTML
    0 Replies
    21 Views
    Last post by Anonymous
  • HTML -Tags auswählen und Option
    by Anonymous » » in HTML
    0 Replies
    28 Views
    Last post by Anonymous