基本id选择器的jQuery语法问题

时间:2012-10-14 18:02:47

标签: javascript jquery

  <div class="wpsc_buy_button_container">
    <input type="submit" value="<?php _e('Customize', 'wpsc'); ?>" name="Customize" 
      class="wpsc_customize_button" id="product_<?php echo wpsc_the_product_id(); ?>_customize_button"/>
  </div>

<script type="text/javascript">
  $("#product_<?php echo wpsc_the_product_id(); ?>_customize_button").click(function() {
    alert('product clicked');
  });
  alert('test click');
</script>

查看 - &gt;来源:

<script type="text/javascript">
  $("#product_53_customize_button").click(function() {
    alert('product clicked');
  });
  alert('test click');
</script>

语法有问题,因为我没有看到警报。如果我删除单个jQuery行,那么测试警报就会开始工作。

1 个答案:

答案 0 :(得分:0)

这是你没有使用jquery事件

使用此

$(function(){
    $("#product_53_customize_button").click(function() {
        alert('product clicked');
      });

    })

$(document).ready(function(){
        $("#product_53_customize_button").click(function() {
            alert('product clicked');
          });

        })