- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想看看我是否可以将 jsfiddle 的元素放入一个页面中,添加一些必要的东西,然后在我的浏览器中运行它。
顺便说一句,它在 jsfiddle ( http://jsfiddle.net/clayshannon/QCrXG/2/ ) 中工作得很好,但不是作为“裸”html 文件。
我认为,我添加了必要的 html(IOW,jsfiddle 在幕后提供的东西),以及对 CDN jQuery、jQueryUI js 文件和 jQueryUI css 文件的必要引用。
我将 CSS 放在页面的样式部分中。
我将 jQuery 放在脚本部分(包括准备处理程序之前的“插件”代码)。
这是整个页面:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Platypus Criteria example</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<style>
h1 {
color: chocolate;
font-family:'Segoe UI Light';
}
body {
background-color: oldlace;
}
form {
background-color: antiquewhite;
}
legend {
font-family:'Century Gothic', Verdana, Georgia, sans-serif;
font-size: 1.2em;
color: navy;
}
.staticLabel {
display: inline-block;
width: 140px;
margin-right: 2px;
text-align: right;
font-family: Consolas, Candara, sans-serif;
}
.checkboxGroups1Col { width: 200px; margin-bottom: 10px; border: 1px solid chocolate; }
.checkboxGroups2Col { width: 400px; margin-bottom: 10px; border: 1px solid chocolate; }
.checkboxGroups3Col { width: 600px; margin-bottom: 10px; border: 1px solid chocolate; }
.checkboxGroups4Col { width: 800px; margin-bottom: 10px; border: 1px solid chocolate; }
.checkboxGroups5Col { width: 1000px; margin-bottom: 10px; border: 1px solid chocolate; }
label { display: inline-block; width: 200px; }
#dbills, #WebbedFeet {
min-height: 200px;
}
.submitButton {
background-color: SkyBlue;
color: white;
font-size: 1.2em;
margin-top: 15px;
}
</style>
<body>
<h1>Platypus Criteria</h1>
<form>
<fieldset>
<legend>Date Range</legend>
<label for="BeginDate" class="staticLabel">Begin Date</label>
<input id="BeginDate" />
<label for="BeginTime" class="staticLabel">Begin Time</label>
<input id="BeginTime" value="00:00:00" />
<br/>
<label for="EndDate" class="staticLabel">End Date</label>
<input id="EndDate" />
<label for="EndTime" class="staticLabel">End Time</label>
<input id="EndTime" value="23:59:59" />
</fieldset>
<br/>
<label for="UPC" class="staticLabel">UPC Starts with</label>
<input id="UPC" />
<br/>
<br/>
<div id="accordion">
<h3 id="deptHeader">Duckbills (selected: <span>all</span>)</h3>
<div id="dbills" class="checkboxGroups4Col">
</div>
<h3 id="WebbedFeetHeader">WebbedFeet (selected: <span>all</span>)</h3>
<div id="WebbedFeet" class="checkboxGroups4Col">
</div>
</div>
<br/>
<input type="button" class="submitButton" value="Determine dbills and WebbedFeet selected" id="submitButton" />
</form>
</body>
<script type="text/javascript">
(function ($) {
$.fn.extend({
appendAllCheck: function () {
var selectors = $('<div class="selectors"></div>').appendTo(this)
.append('<button>Select all</button><button>Deselect all</button>');
selectors.find('button').click(function () {
var checked = $(this).text() == 'Select all';
$(this).closest('.selectors').parent()
.find('[name]:checkbox').prop('checked', checked);
$(this).prop('checked', false);
return false;
});
return this;
},
appendCheckboxes: function (name, labels, props) {
var container = this;
$.each(labels, function (i, l) {
var label = $.isPlainObject(labels) ? i : l,
value = $.isPlainObject(labels) ? l : i;
$('<label>').append(
$('<input>', {
'type': 'checkbox',
'name': name
}).val(value).prop(props||{}),
label).appendTo(container);
});
return this;
},
checkedBoxes: function () {
return this.find(':checked').map(function () {
return $(this).parent().text();
}).get();
}
});
})(jQuery);
$(function() {
var dbillsArray = [];
for (var i = 2; i < 100; i++) {
dbillsArray.push(i);
}
var WebbedFeetArray = [];
for (var i = 1; i < 7; i++) {
WebbedFeetArray.push(i);
}
$('#BeginDate, #EndDate').datepicker();
$('#accordion').accordion();
$('button').button();
$('#dbills').appendAllCheck().appendCheckboxes('dbillsCheckboxList', dbillsArray, {
checked: true
});
$('#WebbedFeet').appendAllCheck().appendCheckboxes('WebbedFeetCheckboxList', WebbedFeetArray, {
checked: true
});
$('#submitButton').click(function() {
dbillsList = $('#dbills').checkedBoxes();
$('#deptHeader span').html(dbillsList.join(", "));
WebbedFeetList = $('#WebbedFeet').checkedBoxes();
$('#WebbedFeetHeader span').html( WebbedFeetList.join(", "));
return false;
});
});
</script>
</html>
这有可能奏效吗?如果是这样,我遗漏了什么或弄错了什么?
另外:为什么页面加载这么慢?
这种工作方式对于小型“小程序”或实用程序(“快速而肮脏”的东西)似乎很方便,无需部署到服务器即可运行;即使您需要使用未托管在 CDN 上的 .js 文件,您也可以简单地保存它的本地副本并像这样引用它:
<script src="checkboxplugin.js"></script>
(此示例假定 .js 文件和 .html 文件作为“ sibling ”并排存在于同一文件夹中)。
最佳答案
有几件事。
如果您不使用网络服务器而是直接在浏览器中打开文件,则需要更改:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
到
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
并且您应该在文件底部添加脚本标签 BEFORE 结束 </body>
标签,而不是在它之后,样式标签应该在 <head>
内标签,即在结束前 </head>
标签。
关于jquery - 为什么我看似独立的网页对 jQuery 充耳不闻?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17886509/
这个问题与窗口处理或多个浏览器窗口的杂耍无关,而是关于在同一窗口中浏览 Web 应用程序的网页。我遇到这样的情况 1.我导航为屏幕 A->屏幕 x->屏幕 Y->屏幕 B 2.我需要捕获首次登录时屏幕
我有这个要求: The system will record the length of time the user displayed each page. 虽然在富客户端应用程序中微不足道,但我不
我在调试 JavaScript 网页时遇到问题。我遇到困难的地方是我标记 (...) 的地方。我收到未定义的错误。我是否将函数 countDown(start, Increment) 中的参数(即 s
需要一些帮助。我刚开始学习 HTML,今天一直在研究如何制作菜单,但在这样做时遇到了问题。 我似乎不知道如何在屏幕上居中显示菜单。 这就是我目前所拥有的; Home
我想通过单击按钮将小程序的任何参数发送到浏览器。 (HTML)。我知道按钮对象有一些方法,但不知道使用哪个。我怎样才能做到这一点?ps .: 我使用的是 jnlp 协议(protocol)。 类似于:
我应该使用Wikipedia的文章链接数据转储从组织的网站中提取代表性术语。 为此,我已经- 抓取并下载了该组织的网页。 (〜110,000) 创建了Wikipedia ID和术语/标题的字典。 (约
我的网页中包含 javascript 函数... function callFromAndroid(varName) { alert("call from android activated by
我想创建一个 Java 应用程序,允许用户导入网页并能够在程序中对其进行编辑。 导入网页将对其进行渲染,并且页面的组件(图像、文本等)将是可编辑或可拖动的,从而允许用户重新布局组件。 例如,用户可以加
当我们按下按钮时,我向 JFrame 添加了一个网页(网页在同一框架中打开)。效果很好。但我想向其中添加一个scrollPane,但是当我添加 JScrollPane jsp = new JScrol
我在使用 particles.js 时无法将图像居中。图像居中,但略微偏离中心。为什么要这样做,我如何才能将它居中? html particles.js demo CSS
我正在尝试在加载页面时播放音频,它应该非常简单但我无法完成。 问题是它没有播放,我尝试检查自动播放的状态(真/假),它说它在页面加载时播放,尽管它没有播放,还尝试制作一个将改变自动播放的功能状态为
我正在尝试显示用户从列表中选择的图像,但我在屏幕上看不到任何内容。 .container { position: relative; } .ce
这听起来有点奇怪,但我需要一些帮助,网页必须有一行必须包含三个部分,第一部分必须有 1 列的偏移量,并且部分之间的空间必须是 10px到目前为止,使用 Bootstrap 一切顺利。 现在第二行将有
这个问题在这里已经有了答案: Web and physical units (2 个答案) Div width in cm (inch) (6 个答案) 关闭 9 年前。
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我想将我的 IPython 笔记本的宽度设置为 2500 像素,并且我希望它左对齐。我该怎么做? 我使用这段代码来应用我自己的 CSS: from IPython.core.display impor
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 7 年前。 Improve this q
我在 Word 中制作了一份文档,希望人们在其中添加自己的姓名以及他们的教学经验。我已将其保存为网页并发布到此处: http://epicforum.net/TS ...但操作部分实际上就是这样: h
这个问题在这里已经有了答案: Execute JS code after pressing the spacebar (5 个答案) 关闭 4 年前。
我正在开发一个只有两个页面的网站。 1.登录 2.首页 我正在使用 Angular 框架。 app.config(['$routeProvider', function ($routeProvider
我是一名优秀的程序员,十分优秀!