gpt4 book ai didi

mvvm - 剑道按钮提示

转载 作者:行者123 更新时间:2023-12-03 10:46:27 25 4
gpt4 key购买 nike

以下代码显示了没有剑道样式的标题:

<button data-role="button" data-bind="click: add" data-position="top" class="k-button" title="Add">
<i class="fa fa-file-o fa-2x"></i>
</button>

虽然此代码显示具有剑道样式但没有标注的标题:
<button data-role="tooltip" data-bind="click: add" data-position="top" class="k-button" title="Add">
<i class="fa fa-file-o fa-2x"></i>
</button>

如何以MVVM方式显示具有剑道样式和标注的按钮的剑道工具提示?

最佳答案

由于Kendo使用jQuery,因此可以使用jquery click函数。

设置按钮的ID

 <button id="testbutton" data-role="tooltip" data-bind="click: add" data-position="top" class="k-button" title="Add">
<i class="fa fa-file-o fa-2x"></i>
</button>

添加点击事件处理程序
$('#testbutton').click(function(){
alert('xx');
});

关于mvvm - 剑道按钮提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24286370/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com