このトピックについて: ボタンのテキストを変更する jquery mobile
http://stackoverflow.com/questions/4009524/change-button-text-jquery-mobile/11851231#11851231
ニック・クレイバーは次のように書いています。
<a data-role="button" href="#" onclick="Podcast.consumed(); return false" id="consumed">
<span class="ui-btn-inner ui-btn-corner-all">
<span class="ui-btn-text">Mark Old</span>
</span>
</a>
と
$("#consumed .ui-btn-text").text("Mark New");
Nick のソリューションでは、Mark New というテキストが修正されています。では、固定テキスト「Mark New」ではなく、新しいテキストは変数からのものですか? たとえば、var newtext = "hello world"
その場合、テキストが真に可変になるようにするには、コードはどのようになりますか? つまり、任意の動的テキストをボタンに配置できます。