1

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

我有一个很长的 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>
4

2 回答 2

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。

祝你好运!

卢卡

于 2015-03-07T12:46:25.597 回答
0

你可以让一个 js 代码将它注入到需要它的 dom 中,他们可以通过放置一个脚本标签来添加它。

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

于 2015-03-07T12:45:47.010 回答