我正在为一个项目使用Acuity Scheduling。它使用prototype.js 并允许我将自己的自定义代码添加到页面的页眉和页脚(通过iframe 提供给我的网站)。我不熟悉prototype.js,所以我试图以一种不会冲突的方式运行jQuery。到目前为止,我什至无法alert()
成功工作。我该怎么做才能在这个页面上使用 jQuery?
你可以在这里看到我的 iframe 的内容:https ://acuityscheduling.com/schedule.php?owner=11134756
如果您查看源代码,您会在底部看到我添加的代码:
<script language="javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script language="javascript">
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery('.time-selection').click(function() {
jQuery('#rest').append('<p class="continueAlert">Please enter your name and contact info below.</p>');
});
});
</script>
我阅读了所有关于将 jQuery 与其他库一起使用的 jQuery 文档,并尝试了我认为可能有用的示例。使用上面的代码,我也尝试过不jQuery.noConflict();
使用 ,因为上面的代码我没有使用$
,而是使用jQuery
.
感谢您对此提供的任何见解!