0

我正在使用移动 Jquery、phonegap 来开发移动应用程序。

选择项目后,我正在生成一个新的动态页面;使用 data-role="page" 和 id="bar"

所以我的代码变成了这样。

  <script type="text/javascript" >

        function showCategory( urlObj, options )
        {
            var alphaName = urlObj.hash.replace( /.*aplha=/, "" ),

    var $page = $('<div data-role="page" id="bar">
                      <div data-role="content"> <a href="#bar?aplha='+previous+'>'+previous+'</a> 

                      <img src="img/alphabets/'+alphaName+'.png"  onclick="playAudio('+alphaName+')"  /> 

                       <a href="#bar?aplha='+next+' data-transition="slidedown">'+next+'</a>
                      </div> <div data-role="footer" data-position= "fixed"> <h4>
                      <a href="#foo">Back to Categories</a></h4> </div> </div>');
        }
</script>

我已经尝试了几乎所有方法来获得关于 alphaName 的警报,onclick=playAudio但都是在 vian 中。我知道问题在于给出 qoutes,但不知何故我无法找到正确的方法。如果有人可以帮忙请

4

1 回答 1

1

尝试“on”绑定方法

从 Jquery 1.7+ 开始,更好的方法是使用 on 方法。

$(document).on('click', 'img', function ()
 { 
alert('image is clicked')
 });

谢谢 AB

于 2013-07-09T10:44:20.857 回答