我是jQuery的新手(实际上,由于this WMD编辑器需要它,所以我只是在使用它)。
无论如何,我正在查看jQuery代码(转到上面的链接并查看jquery.wmd.js),并且有默认选项:
WMDEditor.defaults = { // {{{
version: 2.0,
output_format:"markdown",
lineLength:40,
button_bar: "wmd-button-bar",
preview: "wmd-preview",
output: "wmd-output",
input: "wmd-input",
...
这使我相信,有一种方法可以将选项作为函数的参数传递。我正在寻找一种传递
helpLink
选项的方法。我确信它真的很简单,就像facepalm一样容易,但是我看不懂jQuery,也没有文档。有人可以告诉我如何将选项参数传递给我吗$(function() {
$(".wmd-input").wmd();
});
最佳答案
如果插件正常安装,则可以执行以下操作:
var defaults = {
version: 2.0,
output_format:"markdown",
lineLength:40,
button_bar: "wmd-button-bar",
preview: "wmd-preview",
output: "wmd-output",
input: "wmd-input"
// and then keep on going
}
$(function() {
$(".wmd-input").wmd(defaults);
});
关于javascript - RobinBrouwer WMD-阅读基本jQuery,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6585240/