所以我动态创建一个按钮列表,然后将它们插入到 jquery 移动页面中的 div 中。问题是当它们被插入时,它们的样式不再像我只是在 html 中手动输入它们那样。这是我正在做的代码:
function iabGetURLs(){
var allURLs = window.localStorage.getItem("iabURLs");
html = "";
tmpURLs = allURLs.split(",");
for(var z=0;z<tmpURLs.length;z++){
var urlParts = tmpURLs[z].split("|");
html += '<input type="button" rel="' + urlParts[0] + '" class="iabListButton_' + z + '" value="' + urlParts[1] + '" />';
}
$(".iabList").html(html); //puts it in the div
点击功能:
$("[class^=iabListButton_]").click(function(){
$this = $(this);
$goURL = $this.attr('rel');
startBrowser($goURL);
});