jquery const defaultNavigationOptions = {
headerBackTitle: "Atras",
headerTitleStyle: {
fontFamily: "RobotoCondensed-Regular",
fontWeight: "100",
fontSize: 20,
textAlign: "center",
color: white,
flex: 1
},
headerStyle: { backgroundColor: blue, height: 60 },
headerTintColor: white
}
const BloquesStack = createStackNavigator(
{ /* routes */ },
{ defaultNavigationOptions }
)
const ComisionesStack = createStackNavigator(
{ /* routes */ },
{ defaultNavigationOptions }
)
和.on
有什么区别?
当我搜索jquery API时,我只会返回._on
。 Google也不会返回任何有用的信息。我绝对可以在有效的代码中看到它,例如:
.on
答案 0 :(得分:2)
_on
来自jqueryui widget _on
,而.on
来自normal jquery handler functions
基本上都是同一件事,它们将事件处理程序附加到元素上。例如,当元素被点击时
_on( [suppressDisabledCheck ] [, element ], handlers )
将事件处理程序绑定到指定的元素。 通过事件名称中的选择器来支持委派,例如, “点击.foo”。