Utilizando JQuery, intento establecer una opción como seleccionada en un elemento 'select' basado en la cadena de consulta.Javascript y JQuery, cómo verificar si el elemento de opción existe en select?
Esta pregunta es similar a this, sin embargo, todavía necesito saber cómo verificar si el elemento existe antes de realizar la selección; de lo contrario, la página se actualizará continuamente (ver la condición de salida a continuación).
La obtención de la cadena de consulta se realiza mediante la función getParameterByName, y está funcionando bien.
La implementación actual a continuación:
function setSelectedItem(selectName, itemToSelect) {
///<summary>Selects an HTML option element inside a HTML select element based on the value from the query string.</summary>
///<param name="selectName" type="string">The partial name of the HTML select in which 'itemToSelect' must be selected</param>
///<param name="itemToSelect" type="string">The name of the query string parameter which value is the of the 'option' element to select.</param>
//If an items has already been selected, return
if ($('select[name*=' + selectName + ']')[0].selectedIndex != 0) return;
//Fetches the value from the query string; if empty, returns
var valueToSelect = getParameterByName(itemToSelect);
if (valueToSelect == "") return;
//Fecthes the HTML select object
var selectObject = $('select[name*=' + selectName + ']');
//HERE how to check if 'valueToSelect' does not exist and return?
selectObject.val(valueToSelect).attr('selected', 'selected').change();
}
Actualización: La solución que funcionó fue:
//Checks if the option exists, and returns otherwise
if (!selectObject.find('option[value=' + valueToSelect + ']').length)
return;
Establecer el valor con '.val()' seleccionará ese elemento, entonces ¿por qué también usas '.attr ('selected', 'selected')'? – nnnnnn
Voy a actualizar el ejemplo si eso funciona, gracias – haschdl