0

ボタンの newguid として ID を作成し、それを jquery スクリプトで使用するにはどうすればよいですか? 何かのようなもの:

   @{ var id = Guid.NewGuid().ToString(); } //

<input type=button id="@id" name="Go" /> @*how can i use this newguid as an id for my button?*@

<script>
            @*how can i use this id to attach an eventhandler to for my button?*@
            $("@id ).click(function(){ 
            });
</script>
4

1 に答える 1

3
@{ var id = Guid.NewGuid().ToString(); }
<input type="button" id="@id" name="Go" />

およびスクリプト:

<script type="text/javascript">
    $('#@(id)').click(function() { 
        alert('Thank you for clicking on button with id = ' + this.id);
    });
</script>
于 2012-06-21T07:11:54.793 に答える