Heim  >  Artikel  >  Backend-Entwicklung  >  如何传递这个动态生成的select值

如何传递这个动态生成的select值

WBOY
WBOYOriginal
2016-06-13 13:48:201077Durchsuche

怎么传递这个动态生成的select值?

HTML code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><select name="cpm_id" id="cpm_id" onchange="change_pm({$list.id},)">
        <option value="0">转给</option>
        {foreach item=pm_list  from=$pm_list}
            <option value="{$pm_list.user_id}">{$pm_list.user_name}</option>
        {/foreach}
    </select> 


怎么才能将{$pm_list.user_id}也成为change_pm()的参数?就是和{$list.id}并列成为change_pm()的参数

------解决方案--------------------
{$pm_list.user_id} 这个是很多个的id来的?你要将所有id都放在 change_pm()参数里面?

你要的是不是当前选择了 option 的 value??
------解决方案--------------------

------解决方案--------------------
探讨
HTML code
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn