0

我不想在用户每次足够慷慨地通过投票给我反馈时丢失从用户那里收集的信息。并且代码不完整,但总体思路就在那里。如果这个问题已经得到解决,我深表歉意,但在考虑写这篇文章之前,我环顾四周。

    <script type="text/javascript" src="script.js">
        function sendForm() {

        var previousPollResults;
        // array read from webpage which will be added to.

        for (var i=0; i < document.pollForm.choice.length; i++) {
            if (document.pollForm.choice[i].checked) {
                previousPollResults.choice[i]+=1;
            } else {
                //nothing
            }
        }

    <form name="pollForm">
        <input type="radio" name="choice" value="java" checked />Java<br>
        <input type="radio" name="choice" value="webDesign">Web Design<br>
        <input type="radio" name="choice" value="blogging" checked />Blogging<br>
        <input type="radio" name="choice" value="arduino">Arduino<br>
        <input type="radio" name="choice" value="digitalElectronics" checked />Digital Electronics<br>
        <input type="radio" name="choice" value="onlineResources">Online Resources <br>


        <input type="button" value="send" onclick="sendForm()">
    </form>
4

1 回答 1

-1

由于您使用的是 Blogger 页面而不是托管自己的网站,我假设他们应该有一个投票工具设置。

如果我没记错的话,除了通过 JS 的 COOKIES 之外,您将无法在网站上/从网站上保存任何数据,这不会让您跟踪您的投票,只有用户在访问时拥有投票信息。

阅读:博客民意调查

这可能是另一种选择:Blogger 上的服务器端代理

或者这个:自定义嵌入式投票

还有:Blogger 投票

于 2012-05-24T17:19:37.777 回答