1
我有一個問題,jQuery的移動代碼。我正在使用上面的代碼爲我的應用程序添加一個動態html代碼。jquerymobile按鈕只顯示頁面的第一個外觀
$("#tab3").click(function() {
$('#HaberIcerik').html(" <img src='img/izto_header.png' height=auto width=100% class='img2' > ");
$('#HaberIcerik').append(" <div class='zoomTab'><a href='#' data-role='button' class='plus'>+</a><a href='#' data-role='button' class='minus'>-</a></div>");
});
當頁面首先加載時,一切正常。但是,當我移動到主頁面並再次單擊我的tab3頁面時,按鈕僅顯示爲鏈接,而不是按鈕樣式。
你能幫我解決這個問題嗎?