- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你好,我有这个使用 HTML 的代码:
<button type="button" onclick="test()">{...}
</button>
这是我的 Javascript 代码:
$(document).on('click', '.test_test', function (e) {
...
});
这是我的功能:
function test(){
...
}
问题是我想像这样放置我的函数 test() :
$(document).on('click', '.test_test', function (e) {
...
function test(){
...
}
});
但是如果测试是来自 $(document).on('click', '.test_test', function (e) { ... }
的内部我无法调用函数 test() 而当函数 test() 位于 $(document).on('click', '.test_test', function (e) { ... }
之外时该功能有效。
你能帮我一下吗?
非常感谢!
编辑:我想要的实际上是传递 $(document).on('click', '.test_test', function (e) { ...}
中的变量在函数 test()
中但我不知道该怎么做,我 try catch 这样的变量:
<button type="button" onclick="test(variable)">{...}
</button>
并像这样编辑功能测试:
function test(variable){
alert(variable);
}
但是它不起作用......
最佳答案
为什么不直接从第一个函数开始调用呢?
$(document).on('click', '.test_test', function (e) {
...
test()
});
function test(){
...
}
另外,.test_test
是什么?
关于javascript - 我怎样才能得到这个论点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55849983/
这个问题在这里已经有了答案: 8年前关闭。 Possible Duplicate: How to use R's ellipsis feature when writing your own func
当我尝试指定我想要 pull 最新版本的 pod 时,根据 Cocoapods official docs ,我将它列在我的 podfile 中,如下所示: pod 'ReactiveCocoa',
我是一名优秀的程序员,十分优秀!