我已經按鈕可以設置類似的標題:jQuery的 - 更改按鈕
<button id="invOn2" style="float: left;">Item 2</button>
按鈕是一個對話框裏,我試圖爲正在打開的對話框更改按鈕的標題:
$('#invOn2').button("option", "label", "shwaf");
這不是工作,出了什麼問題?
的建議還沒有做過的呢,我去闡述什麼即時通訊的結構做:
// jQuery的設置
$(function() {
$('#invOnBox').dialog({
autoOpen: false,
resizable: false,
height: 350,
width: 300,
});
$('#invOnButton').click(function() {
$('#invOn1 button').html('shwaf');
$('#invOnBox').dialog('open');
return false;
});
});
//的invDialog和內部按鈕
<div id="invOnBox" title="Inventory">
<button id="invOn1" style="float: left;">Item 1</button>
</div>
// the invOnButton
<button id="invOnButton" style="float: left;">Inventory</button>
謝謝!
http://stackoverflow.com/questions/987967/how-to-change-an-elements-title-attribute-using-jquery – FosterZ 2010-09-08 05:34:22