我正在编写一个可以链接到不同网站的弹出功能。在弹出窗口中,有 3 个选择:例如 yahoo、google 等。所以对我来说,问题是我选择 yahoo 弹出窗口后如何链接到 yahoo.com.hk。
例如,我选择“yahoo”,它将打开一个新窗口并链接到 www.yahoo.com。
谢谢!
<a href="#Link" data-rel="popup">
<div data-role="popup" id="Share" data-shadow="true" data-theme="a" >
<fieldset data-role="controlgroup">
<legend>Select website</legend>
<input type="radio" name="radio-choice" id="radio-choice-1" value="yahoo" />
<label for="radio-choice-1">yahoo</label>
<input type="radio" name="radio-choice" id="radio-choice-2" value="google" />
<label for="radio-choice-2">google</label>
<input type="radio" name="radio-choice" id="radio-choice-3" value="microsoft" />
<label for="radio-choice-3">microsoft</label>
</fieldset>
</div>