0
我有這個jQuery用戶對話框:jQuery的用戶對話框按鈕
<!-- jQuery UI dialogs -->
<div class="widget">
<div class="head"><h5 class="iAlert">jQuery UI dialogs</h5></div>
<div class="body aligncenter">
<div class="uDialog">
<div id="dialog-message" title="Download complete">
<p><img src="images/icons/color/tick.png" alt="" class="icon" />Your files have downloaded successfully into the My Downloads folder.</p>
<p>Currently using <strong>36% of your storage space</strong></p>
<div class="uiForm">
<form action="" class="mainForm">
<input type="text" value="http://" name="inputtext"/>
<input type="radio" name="question1" checked="checked" /><label>Selected radio</label>
<input type="radio" name="question1" /><label>Normal state</label>
</form>
</div>
</div>
<!-- Sample page content to illustrate the layering of the dialog -->
<input type="button" value="Usual jQuery UI dialog" class="blueBtn" id="opener" />
</div>
</div>
</div>
我想從按鈕切換輸入圖像,像這樣:
<a href="#" title=""class="btn55 mr10"><img src="images/add.png" alt="" /><span>Add</span></a>
有一個辦法?
你想自定義輸入按鈕來改變圖像嗎? – trajce
是的,你是對的; – user2112020