我有一個index.html頁面。此頁面還包含很多像#home,#list #contacts等頁面。Jquery Mobile Listview Clicked Item - 將參數傳遞給另一頁
#list部分我動態地從我的網頁獲取數據並生成listview。我想,當用戶單擊任何列表項的,重定向到#imageDetail頁面並傳遞圖像URL頁面,並顯示圖像
這裏是#imageDetail頁部分
<div data-role="page" id="detailedIMAGE" data-theme="a">
<div data-role="header" data-theme="b" data-position="fixed">
<h1>Image Detail</h1>
</div>
<div data-role="content">
<img id="imageDetayURL" name="imageDetayURL" src="glyphish-icons/158-wrench-2.png"/>
<input type="text" disabled="disabled" id="brewername" name="brewername" />
</div>
</div>
</div>
而下面的代碼是我的javascript代碼動態獲取json數據。
<script>
$('#last5').live("click", function() {
$.ajax({
url: "http://mysqlservice.com/getdata.json",
dataType: 'jsonp',
success: function(json_results){
$("#imageListDetay").html('');
console.log(json_results);
$('#imageListDetay').append('<ul data-role="listview" id="tweetul" data-theme="c"></ul>');
listItems = $('#imageListDetay').find('ul');
$.each(json_results.results, function(key) {
html = '<h3>'+json_results.results[key].screen_name+'</h3><span id="detailed_image">'+json_results.results[key].resim_url+'</span><img WIDTH=200 HEIGHT=100 src="http://mywebpage.org/upload/'+json_results.results[key].resim_url+'" /><p class="ui-li-bside"><img WIDTH=8 HEIGHT=13 src="images/07-map-marker.png"/> '+json_results.results[key].adres_data+'</p>';
listItems.append('<li><a name="imageDetayGoster" href="#detailedIMAGE">'+html+'</a></li>');
});
$('#imageListDetay ul').listview();
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
//error
}
});
})
$("#detailedIMAGE").live("pagebeforeshow", function (e, data) {
var brewername = $('#detailed_image',data.prevPage).text();
$('#brewername').val(brewername);
$('#imageDetayURL').attr('src', 'http://mobil.harmankaya.org/'+brewername);
alert(brewername);
});
</script>
問題是頁面更改後alert(brewername)
火災。但列出所有圖像在列表視圖中列出的網址不是我選擇的。
我該如何解決這個問題
在此先感謝。
如果你仍然有這個問題,請隨時查看我的[插件](https://github.com/CameronAskew/jquery.mobile.paramsHandler),它允許用參數進行乾淨的URL導航 – 2014-04-04 22:11:15