我正在使用 jquerymobile 为 Web 应用程序创建一个广播组。在某一时刻,用户必须在“男性”和“女性”之间进行选择。我有点击(触摸)性别和未点击性别的图像。我想用两个具有两种状态的图像替换无线电组。我怎么做?
问问题
1849 次
1 回答
3
我在这里给你做了一个例子:http: //jsfiddle.net/Gajotres/EeRXd/
$('div[data-role="fieldcontain"] fieldset div div:first-child label span span').html('<img src="http://cdn1.iconfinder.com/data/icons/Snow/Snow/snow/Male.png" width="32px" height="32px"></img>');
$('div[data-role="fieldcontain"] fieldset div div:last-child label span span').html('<img src="http://cdn1.iconfinder.com/data/icons/Snow/Snow/snow/Female.png" width="32px" height="32px"></img>');
如果您想要其他东西,请在评论中告诉我,如果您有每个州的图像,请给我发送位置,我将重建这个示例。
于 2012-11-28T14:41:49.023 回答