我一直在旋转我的轮子并寻找答案一段时间,所以我想我会发布。
尝试将简单的 JQuery 选项卡添加到 visualforce 页面,我已经验证 jquery 和 jquery ui 正在加载。我过去做过这个,不记得是“陷阱”了。有任何想法吗?
这是我的简单代码:
<code>
<apex:page standardController="Account" showHeader="false" sidebar="false" standardStylesheets="false" doctype="html-5.0" cache="false">
<head>
</head><apex:includeScript value="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js"/>
<apex:includeScript value="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.js"/>
</head>
<body>
<div id="tabs">
<ul>
<li><a href="#tabs-1">Nunc tincidunt</a></li>
<li><a href="#tabs-2">Proin dolor</a></li>
<li><a href="#tabs-3">Aenean lacinia</a></li>
</ul>
<div id="tabs-1">
<p>Content for tabs-1</p>
</div>
<div id="tabs-2">
<p>Content for tabs-2</p>
</div>
<div id="tabs-3">
<p>Content for tabs-3</p>
</div>
</div>
</body>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function() {
jQuery( "#tabs" ).tabs();
});
</script>
</apex:page>
</code>