我有以下情况。实际上,通过渲染html下拉框后的过程显示如下值
<select id="ht" class="input-box quick-jump-menu" name="ht">
<option selected="selected" value="">Jump straight to a below option</option>
<option value="<span id="_SE_CP" _SE_CPt="default"><a href="Google.co.uk" alt="Lakeside" target="_self" class="">Lakeside</a></span>">
Lakeside
</option>
<option value="<span id="_SE_CP" _SE_CPt="default"><a href="http://www.google.com" alt="Alvaston Hall" target="_self" class=""></a></span>">
Alvaston
</option>
通过某些过程,它在那里使用了一些 span 标签,我只需要 value 属性中的 url,如下所示
<select id="ht" class="input-box quick-jump-menu" name="ht">
<option selected="selected" value="">Jump straight to a below option</option>
<option value="Google.co.uk">
Lakeside
</option>
<option value="http://www.google.com">
Alvaston
</option>
在这里,我只需要在“option”标签的“Value”属性中设置 URL 值。我认为这可以通过 jquery 来完成。
如果可能,请建议任何人,我们将不胜感激