如何在 jquery ui 输入按钮上放置图标?

发布于 2024-09-05 17:57:44 字数 533 浏览 3 评论 0原文

根据 jquery ui 按钮文档,我尝试了以下操作:

<jquery>$("#test").button({ icons: { primary:'ui-icon-gear' } });</jquery>
<input id="test" type="submit" value="test"></input>

但是该图标没有出现在按钮上。如果我将 更改为 ,它就可以工作;但我需要表单提交按钮上的图标。将 放在按钮周围也没有帮助(然后我在按钮内有一个按钮)。

我还尝试了 这个 stackoverflow 问题中描述的解决方案,但是 .prepend 跨度没有对我的页面没有影响。有什么想法吗?

Based on the jquery ui button documentation, I tried the following:

<jquery>$("#test").button({ icons: { primary:'ui-icon-gear' } });</jquery>
<input id="test" type="submit" value="test"></input>

However the icon doesn't appear on the button. If I change the <input> to a <span>, it works; but I need the icons on a form submit button. Placing the <span> around the button doesn't help either (then I have a button inside a button).

I also tried the solution described in this stackoverflow question, but the .prepend span doesn't have an effect on my page. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

断桥再见 2024-09-12 17:57:44

您可以将单击事件绑定到您的跨度,而不是像按钮一样...例如:

<form id="myForm" ...>
...
    <span onclick="document.myform.submit()" class="jqueryUI" id="myButton">Butotnvalue</span>
...
</form>

更好的方法是将其绑定在 jQuery 加载器函数中,当然;-)

$('#myButton').bind('click', function(){
    $('#myForm').submit();
});

you can bind a click event to your span than it's like a button ... for example:

<form id="myForm" ...>
...
    <span onclick="document.myform.submit()" class="jqueryUI" id="myButton">Butotnvalue</span>
...
</form>

better way is to bind it in the jQuery loader function, for sure ;-)

$('#myButton').bind('click', function(){
    $('#myForm').submit();
});
骑趴 2024-09-12 17:57:44

试试这个,

$("#test input").each( function() {
   $(this).button({ icons: { primary: 'ui-icon-gear' } });
});

我喜欢把我的图标放在我的列表中,并将其变成更有趣的东西,例如:

$("#test input").each( function() {
   $(this).button({ icons: { primary: $(this).attr('icon') } });
});

并将您的输入设置为:

<input id="test" type="submit" value="test" icon='ui-icon-gear'>

Try this instead

$("#test input").each( function() {
   $(this).button({ icons: { primary: 'ui-icon-gear' } });
});

I like to put my icon in my list and turn it into something more fun like:

$("#test input").each( function() {
   $(this).button({ icons: { primary: $(this).attr('icon') } });
});

And have your input as:

<input id="test" type="submit" value="test" icon='ui-icon-gear'>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文