来自here
的参考资料当jquery与prototype,任何建议冲突时,此方法不起作用?
<script type='text/javascript'>
$(window).load(function() {
$('#trade_type').change(function() {
if( $(this).val() == '6') {
$('body').append('<input id="promo" type="text" />');
}
else {
$('#promo').remove();
}
});
});
</script>
答案 0 :(得分:0)
尝试将$
转换为jQuery
或将代码包装在jQuery(document).ready(function ($) {...});
中:
jQuery(document).ready(function ($) {
$(window).load(function () {
$('#trade_type').change(function () {
if ($(this).val() == '6') {
$('body').append('<input id="promo" type="text" />');
} else {
$('#promo').remove();
}
});
});
});