本文介绍了如何停止在特定按钮上生成代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用jquery框架在我的web应用程序中创建一个输入按钮供我自己使用。但是当我在浏览器中看到html代码时,框架会围绕该输入生成一些包装代码,如何防止不生成该代码?
I am trying to create an input button for my own use in my web-application thats using jquery framework. But when I see the html code in browser, the framework is generating some wrapper code around that input, how to prevent that code to be not generated?
我的代码:
<input type="button" value="off" class="toggle-btn" id="toggle-btn1" />
生成输出:
<div data-theme="c" class="ui-btn ui-btn-corner-all ui-shadow ui-btn-up-c">
<span class="ui-btn-inner ui-btn-corner-all">
<span class="ui-btn-text">off</span>
</span>
<input type="button" id="toggle-btn1" class="toggle-btn ui-btn-hidden" value="off">
</div>
推荐答案
您想要数据角色=none
这篇关于如何停止在特定按钮上生成代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!