<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行,那么测试警报就会开始工作。
答案 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');
});
})