- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我添加了两个 jquery,一个用于数据表,另一个用于范围 slider ,但我的范围 slider 未显示。它给了我这个错误
Uncaught ReferenceError: Jquery is not defined.
我的代码如下,它有两个范围 slider 。
<apex:page id="page" controller="AttachmentListWithFilterController" sidebar="false" readOnly="true">
<apex:includeScript value="{!URLFOR($Resource.jQuery, 'js/jquery-1.6.2.min.js')}"/>
<apex:includeScript value="{!URLFOR($Resource.jQuery, 'js/jquery-ui-1.8.16.custom.min.js')}"/>
<apex:stylesheet value="{!URLFOR($Resource.jQuery, 'css/ui-lightness/jquery-ui-1.8.16.custom.css')}"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.9/js/jquery.dataTables.min.js"></script>
<link href="https://cdn.datatables.net/1.10.9/css/jquery.dataTables.min.css" rel="stylesheet"/>
<script type="text/javascript">
$(function () {
$("#example1").dataTable();
});
</script>
<apex:actionStatus id="actStatusId" >
<apex:facet name="start" >
<img src="/img/loading.gif" />
</apex:facet>
</apex:actionStatus>
<!-- <c:waitScreen >
<img src="/img/loading32.gif" />
<div style="font-size:150%;padding:5px">Please Wait....</div>
</c:waitScreen> -->
<script type="text/javascript">
//This will load as soon as the page is ready and will setup our slider
var str;
$(document).ready(function(){
var i=0,a=0;
str = document.getElementById('{!$Component.form.selectedF}').value;
var b=document.getElementById('{!$Component.page.form.pb.slidervalue.idInputHiddenMax}').value;
console.log('Value of b'+b);
$("#slider-range").slider({ //This line creates a slider on the DIV specified, options are passed arguments, comma separated below
range: true, //This give the slider and top and bottom
min: 0, //Min value for slider
max: b, //Max value for slider
values: ['{!sSliderFieldMin }','{!sSliderFieldMax }'], //Start values for the slider
slide: function(event, ui){ //This function executes every time slider is moved and applies the slider values to the inputHidden fields as well as the output below the slider
document.getElementById('{!$Component.page.form.pb.slidervalue.idInputHiddenMin}').value = ui.values[0];
document.getElementById('{!$Component.page.form.pb.slidervalue.idInputHiddenMax}').value = ui.values[1];
$("#amountValue").html( + ui.values[0] + 'KB - ' + ui.values[1] + 'KB');
//callfind();
//console.log(i++);
},
stop:function(event,ui){console.log(ui);callfind();}
});
$("#amountValue").html( + $("#slider-range").slider("values", 0) + 'KB - ' + $("#slider-range").slider("values", 1) + 'KB');
});
function checkMethod(){
var i=0;
str = document.getElementById('{!$Component.form.selectedF}').value;
var b=document.getElementById('{!$Component.page.form.pb.slidervalue.idInputHiddenMax}').value;
console.log('Value of b'+b);
$("#slider-range").slider({ //This line creates a slider on the DIV specified, options are passed arguments, comma separated below
range: true, //This give the slider and top and bottom
min: 0, //Min value for slider
max: b, //Max value for slider
values: ['{!sSliderFieldMin }',b], //Start values for the slider
slide: function(event, ui){ //This function executes every time slider is moved and applies the slider values to the inputHidden fields as well as the output below the slider
document.getElementById('{!$Component.page.form.pb.slidervalue.idInputHiddenMin}').value = ui.values[0];
document.getElementById('{!$Component.page.form.pb.slidervalue.idInputHiddenMax}').value = ui.values[1];
$("#amountValue").html( + ui.values[0] + 'KB - ' + ui.values[1] + 'KB');
//callfind();
//console.log(i++);
},
stop:function(event,ui){console.log(ui);callfind();}
});
$("#amountValue").html( + $("#slider-range").slider("values", 0) + 'KB - ' + $("#slider-range").slider("values", 1) + 'KB');
}
</script>
<script type="text/javascript">
function selectAllCheckboxes(obj,receivedInputID){
var inputCheckBox = document.getElementsByTagName("input");
for(var i=0; i<inputCheckBox.length; i++){
if(inputCheckBox[i].id.indexOf(receivedInputID)!=-1){
inputCheckBox[i].checked = obj.checked;
}
}
}
function selectThis(ele,id){
if(ele.checked)
str+=id;
else
str = str.replace(id,'');
document.getElementById('{!$Component.form.selectedF}').value = str;
}
</script>
<apex:pageMessages ></apex:pageMessages>
<apex:Form id="form">
<apex:inputhidden id="selectedF" value="{!selectedFiles}"/>
<apex:actionFunction name="callfind" action="{!searchByRange}" reRender="PGTable" status="actStatusId" />
<apex:pageBlock id="pb" >
<apex:pageblockSection title="Select Type" collapsible="false">
<apex:selectRadio value="{!Selected}">
<apex:actionSupport event="onchange" action="{!TakeOther}" reRender="PGTable,pblock,showOwner,showslider,slidervalue" onComplete="checkMethod();"/>
<apex:selectoptions value="{!radioValues}" />
</apex:selectRadio>
</apex:pageBlockSection>
<apex:pageBlockSection title="Filter" collapsible="true" columns="2" id="pblock">
<apex:panelGrid columns="3" id="showOwner">
<apex:outputLabel value="Owner" rendered="{!renderName4}"/>
<apex:inputField value="{!attachmentToUser.OwnerId}" rendered="{!renderName1}" id="AttachmentID" required="false"/>
<apex:inputField value="{!cv.OwnerID}" rendered="{!renderName2}" id="FileID" required="false"/>
<apex:inputField value="{!documentToUser.AuthorId}" rendered="{!renderName3}" id="DocumentID" required="false"/>
<apex:commandButton action="{!searchByOwner}" value="Submit" reRender="DemoRepeat" rendered="{!ShowSumbit}"/>
</apex:panelGrid>
<apex:pageBlockSectionItem id="showslider" >
<div id="slider-range" style="font-size: 90%; margin-top: 0.5em;width:100%"></div>
<div id="amountValue" style="text-align: center"></div>
<apex:actionFunction action="{!searchByRange}" name="myFunction" reRender="PGTable"/>
</apex:pageBlockSectionItem>
</apex:pageBlockSection>
<apex:pageBlockSection columns="1" id="slidervalue">
<apex:inputhidden value="{!sSliderFieldMin}" id="idInputHiddenMin"/>
<apex:inputhidden value="{!sSliderFieldMax}" id="idInputHiddenMax"/>
</apex:pageBlockSection>
<center> <apex:commandButton value="Delete Selected" reRender="PGTable" action="{!deleteSelected}" rendered="{!ShowDelete}"/></center>
<table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th>Name</th>
<th>BodyLength</th>
<th>Created Date</th>
<th>Owner Name</th>
</tr>
</thead>
<tbody>
<apex:repeat value="{!listofRecords}" id="DemoRepeat" var="a">
<tr>
<td> <apex:outputText value="{!a.Name}"/></td>
<td> <apex:outputText value="{!a.size}"/></td>
<td> <apex:outputText value="{!a.Mydate}"/></td>
<td> <apex:outputText value="{!a.OwnerName}"/></td>
</tr>
</apex:repeat>
</tbody>
</table>
<center> <apex:commandButton value="Delete Selected" reRender="PGTable" action="{!deleteSelected}" rendered="{!ShowDelete}"/></center>
</apex:pageBlock>
</apex:Form>
最佳答案
您将需要使用 jQuery.noConflict();
在 Visualforce 中访问 jQuery。
Salesforce 已使用其他利用 $
全局变量的库。
请参阅使用 Developing Apps with jQuery - jQuery's No Conflict Mode with Visualforce
关于javascript - Uncaught ReferenceError : Jquery is not defined in salesforce,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32921067/
描述:。在我的Vue 3和nuxt 3项目中,我使用VITEST进行测试。但我在运行测试时遇到了一个问题:。版本。以下是我的页面代码:。下面是我的测试myest.spec.ts:。以下是我的vites
你好吗?我正在研究带有 Ionic 3 教程的 Google map 。我已经完成了那里解释的一切,但是当项目启动时,出现了这个错误。我调查了很多,但没有任何效果。谢谢! Error: Uncaugh
我刚刚开始使用 Node.js 并尝试使用模块。我已经安装了 Node 和 npm,并确保一切顺利。我将在下面添加代码来向您展示我得到了什么。 我有两个 js 文件,它们在这里。 app.js: va
我是 Angularjs 的初学者,在理解模块和作用域方面有些困难。 我不断收到范围未定义的错误,但我不明白为什么。首先,我将 Controller 链接到我设置路由的位置,但是由于在单击提交按钮时调
我正在制作一个 HTML 模板引擎。 程序遍历 HTML,并找到 {{ }} 的所有实例。然后它会遍历计数器中的所有键,并用对 Controller 的引用替换变量名称的实例。 例如,如果我的 Con
在我的 React Native 应用程序中,我有一个 ProductScreen,其中导入两个文件来完成屏幕。 文件 1 (Products.js) 是我的产品列表 文件 2 (Data.js) 是
我有以下类(class): class ScheduledContent { constructor(knex) { this.knex = knex } ge
在以下代码中,obj.sayhello() 行意味着sayhello在 obj 的上下文/范围内执行。 str未在 var 中定义(通过 sayhello )方法。 JS 将在范围内查找变量,即在
我正在尝试使用字符串作为函数的一部分。 const import1 = require('./import1'); const import2 = require('./import2'); //on
var g = { lang: "ttt", l: function(){ console.log(lang); } } console.log(g.l());
$(document).ready(function(){ $('#name').val('Name1'); }); function clickMe(){ console.lo
我刚刚完成了 Meteor 包的开发。现在我想通过将它添加到新的 Meteor 应用程序来测试它: my_cool_package_name/package.js Package.on_use(fun
我在给定的 SSCCE 代码中收到以下错误: Error: ReferenceError: electron is not defined Source File: http://localhost/
我正在关注一个简单的 tut,它有望构建一个响应式 slider ,但是它一直告诉我控制台中有一个错误指向一个名为 advance() 的函数 这是 slider 的简单 html:
我正在尝试使用基于按钮点击的表格中的数据填充表格。我正在将数据传递到 javascript 函数中。 )" id="modifyEdu" class="btn btn-primary"
我需要能够检查一个变量是否存在(如果它没有分配给 {})而不在 javascript 中抛出错误。当我尝试这段代码时 if (a) {} 它抛出 Uncaught ReferenceError
我在设置中有一个 mochajs 测试文件和一个 javascript 代码文件,如下所示: /js/module/codefile.js /js/test/testfile.js codefile.
我正在尝试构建一个简单的 Bookmarklet,它将一些外部 Javascript 加载到页面中,目标是将像 Stackoverflow 那样的 Markdown 编辑器添加到另一个站点。我可以使用
我有一个基于 Django 的网络应用程序。我用 Scrapy Crawler抓取网页。目前,我的目标是能够使用 jQuery 和 AJAX 请求从网页内控制爬虫。 我的理论设置如下: 在网页上,我有
以下 JavaScript... if (eval('typeof admin_post_css_theme_dark-moon)=='function')) {/**/} ...触发以下错误消息..
我是一名优秀的程序员,十分优秀!