最小化Javascript和HTML代码

时间:2015-03-07 12:33:08

标签: javascript jquery html client-side-scripting

我为我的客户开发了一个自定义工具,他们可以将反馈提交到中央数据库。

我有一个很长的HTML和JavaScript代码,客户在他们的网站上粘贴这个代码,工具会出现在网站上。

我的问题是如何最小化此代码?我见过聊天工具,只需要粘贴几行代码就会出现在浏览器上。

下面是我的代码,我需要从中生成一小部分代码。

<div id='htmlfeedback-container-more'>
<a id='lnkdivFeedBackPage1' href='#'>FeedBack</a> | <a id='lnkdivFeedBackPage2' href='#'>Settings</a><br /><br />
<div id='divFeedBackPage1'>
<div id='content' class='content'></div>
<p>Please give a short description of your feedback. You can also highlight or blackout parts of the screen.</p>
<p>Note: Click on highlighted areas to disappear </p>
<form id='htmlfeedback-form'>
<p> <span>Marker:</span><input type='radio' name='marker' value='rgba(255,255,255,0)' style='width:10%' checked> Highlight <input type='radio' name='marker' value='rgb(0,0,0)' style='width:10%'> Black out    </p>
<p><span>Name or E-mail:</span> <input type='text' name='email' id='htmlfeedback-input-email' style='width:88%'/></p>
<p><span>Short description:</span> <textarea name='description' id='htmlfeedback-input-description'></textarea></p>
<p><input type='submit' id='htmlfeedback-submit' value='Send' style='background-color:#5547ec'><input type='reset' id='htmlfeedback-reset' value='Reset' style='width:30%;background-color:#5547ec'></p>
</form></div>
<div id='divFeedBackPage2'>
<p>Changes will take effect through all the instances of the tool if you have added the control in multiple locations.</p>
<form id='frmfeedBackSettings-form'>
<p><span>Title:</span><input type='text' name='text' id='txtfeedBackTitle' style='width: 88%' /></p>
<p><span>Color:</span><input type='text' name='text' id='txtfeedBackColor' /></p>
<input type='submit' id='btnSubmitFeedbackSettings' value='Submit'/>
</form></div></div></div>
<div id='divWaitMsg' style='display:none; color:blue; font-size:20px' class='centered'>Please Wait....</div>

2 个答案:

答案 0 :(得分:1)

有些人只使用几行代码执行您尝试执行的操作的方式是使用HTML iFrame,

喜欢

<noscript>Enable Javascript to get full functionality of this <a href="http://www.freeshoutbox.net/">shoutbox</a><br /></noscript><iframe src="http://CodeLuca.freeshoutbox.net/" height="300" width="500" frameborder="0"></iframe>

<iframe width="560" height="315" src="https://www.youtube.com/embed/DBXZWB_dNsw" frameborder="0" allowfullscreen></iframe>

如果你想制作一个,你只需要在空白页面上制作表格,然后制作一个链接到它的iframe。

祝你好运!

卢卡

答案 1 :(得分:0)

您可以将js代码注入到需要它的dom中,并且可以通过放置脚本标记来添加它。

<script src="feedback-form.js"></script>并且反馈表单会注入html内容。