火影之强者之道全本txt:asp警告的弹出

来源:百度文库 编辑:神马品牌网 时间:2024/04/29 03:51:27
alert('musictype is m_type ')

m_type的值为5,怎么显示呢?

如果m_type是asp的变量,那么应该是:
alert('musictype is <%=m_type%>')

如果m_type是script里的变量,那么应该是:
alert('musictype is '+m_type)

同意楼上

同意!